diff --git a/.github/workflows/docs_docker-build.yml b/.github/workflows/docs_docker-build.yml index 6becced5..63facde4 100644 --- a/.github/workflows/docs_docker-build.yml +++ b/.github/workflows/docs_docker-build.yml @@ -24,7 +24,7 @@ env: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04-arm permissions: contents: read packages: write diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d810977..f397e0a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -306,6 +306,8 @@ list(APPEND APP_INCLUDE_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/externals/msgpack-c/include") list(APPEND APP_INCLUDE_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/externals/miniz-3.0.2") + list(APPEND APP_INCLUDE_DIRS + "${CMAKE_CURRENT_SOURCE_DIR}/externals/nlohmann-json") list(APPEND APP_INCLUDE_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/externals/incbin") list(APPEND APP_INCLUDE_DIRS @@ -2103,6 +2105,10 @@ if(COOLPROP_CATCH_MODULE) set_property(TARGET CatchTestRunner PROPERTY CXX_INCLUDE_WHAT_YOU_USE ${iwyu_path}) endif() + + if(COOLPROP_LAZY_LOAD_SUPERANCILLARIES) + target_compile_definitions(CatchTestRunner PRIVATE LAZY_LOAD_SUPERANCILLARIES) + endif() endif() if(COOLPROP_CPP_EXAMPLE_TEST) diff --git a/Web/conf.py b/Web/conf.py index dbdc7f04..c6b46a83 100644 --- a/Web/conf.py +++ b/Web/conf.py @@ -18,6 +18,8 @@ # built documents. # +import subprocess +import sys from pathlib import Path import urllib.request import zipfile @@ -76,6 +78,14 @@ else: 'cpapi': ('_static/doxygen/CoolPropDoxyLink.tag', 'http://www.coolprop.org/dev/_static/doxygen/html') } +# Execute all the notebooks +for dirpath, dirnames, filenames in Path(__file__).parent.walk(): + for file in filenames: + if file.endswith('.ipynb') and '.ipynb_checkpoints' not in str(dirpath): + cmd = f'jupyter nbconvert --allow-errors --to notebook --output "{file}" --execute "{file}"' + subprocess.check_output(cmd, shell=True, cwd=dirpath) + + # -- General configuration ----------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be extensions @@ -103,6 +113,7 @@ extensions = ['IPython.sphinxext.ipython_console_highlighting', # 'inheritance_diagram', # 'numpydoc', # 'breathe' + "nbsphinx", ] # set path to issue tracker: diff --git a/Web/coolprop/SuperAncillary.ipynb b/Web/coolprop/SuperAncillary.ipynb new file mode 100644 index 00000000..dfdc7c3d --- /dev/null +++ b/Web/coolprop/SuperAncillary.ipynb @@ -0,0 +1,434 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "ed8d1cd8-0c5b-4f4e-8668-ef653075ec02", + "metadata": {}, + "source": [ + "# Superancillaries \n", + "\n", + "## Motivation\n", + "\n", + "VLE calculations for pure fluids require to solve the system of equations \n", + "\n", + "$$\n", + "p(T,\\rho') = p(T,\\rho'')\n", + "$$\n", + "$$\n", + "g(T,\\rho') = g(T,\\rho'')\n", + "$$\n", + "which is a complicated non-linear rootfinding problem. For a specified $T$, one must get guess values for $\\rho'(T)$ and $\\rho''(T)$ which are commonly obtained from ancillary functions that give \"good enough\" estimates of the densities from which a nonlinear rootfinding algorithm launches to solve for the co-existing densities.\n", + "\n", + "These calculations, while not very slow (order of microseconds per call), often, if not usually, represent a computational pinchpoint. So it would be nice to be able to use a numerical function that can represent the results of these iterative calculations so well that the iterative calculation itself can be avoided. The superancillary functions described here satisfy that goal.\n", + "\n", + "## Theory and Approach\n", + "\n", + "The development of superancillary functions have been laid out in a series of publications:\n", + "\n", + "* [Exceptionally reliable density-solving algorithms for multiparameter mixture models from Chebyshev expansion rootfinding](https://scholar.google.com/citations?view_op=view_citation&hl=en&user=WNn0e_4AAAAJ&cstart=20&pagesize=80&sortby=pubdate&citation_for_view=WNn0e_4AAAAJ:hMod-77fHWUC)\n", + "* [Efficient and Precise Representation of Pure Fluid Phase Equilibria with Chebyshev Expansions](https://scholar.google.com/citations?view_op=view_citation&hl=en&user=WNn0e_4AAAAJ&cstart=20&pagesize=80&sortby=pubdate&citation_for_view=WNn0e_4AAAAJ:OU6Ihb5iCvQC)\n", + "* [Superancillary Equations for the Multiparameter Equations of State in REFPROP 10.0](https://scholar.google.com/citations?view_op=view_citation&hl=en&user=WNn0e_4AAAAJ&sortby=pubdate&citation_for_view=WNn0e_4AAAAJ:AXPGKjj_ei8C)\n", + "\n", + "The term \"superancillary\" was coined by Ulrich Deiters to differentiate it from the ancillary functions that are commonly provided alongside reference equations of state.\n", + "\n", + "At their core, a superancillary function is constructed from a series of Chebyshev expansions. When considering the entire set of Chebyshev expansions, they span the entire range of the independent variable. In their current form, they support only 1D function approximation. Chebyshev expansions, and orthogonal polynomials more generally, are a well-studied numerical tool for function approximation and can permit function approximation to the level of numerical precision.\n", + "\n", + "To build the superancillary equations, one does vapor-liquid equilibrium (VLE) calculations at carefully selected temperatures and *does some math* to construct the Chebyshev expansion. If the expansion is not accurate enough, the domain is subdivided into two halves and the process is then carried out in each section.\n", + "\n", + "To ensure highly accurate and reliable results in the very near vicinity of the critical point, as well as at very pressures (e.g., near the triple point of propane), it is necessary to do the phase equilibrium calculations in extended precision arithmetic. The ``boost::multiprecision`` library is used in C++ to do the extended precision calculations, in concert with the new ``teqp`` library for the equation of state part. The code used to do this exercise is in a fork at https://github.com/CoolProp/fastchebpure and [the releases](https://github.com/CoolProp/fastchebpure/releases) contain the obtained functions.\n", + "\n", + "### Caveats:\n", + "* When superancillaries are enabled, the \"critical point\" is the numerical one that is obtained by enforcing $\\left(\\frac{\\partial p}{\\partial \\rho}\\right)_T = \\left(\\frac{\\partial^2 p}{\\partial \\rho^2}\\right)_T = 0$, rather than the one reported by the EOS developers. This is because the superancillaries are developed to try to fix the critical region as well as possible. The differences can be sometimes not too small: [An Analysis of the Critical Region of Multiparameter Equations of State](https://scholar.google.com/citations?view_op=view_citation&hl=en&user=WNn0e_4AAAAJ&sortby=pubdate&citation_for_view=WNn0e_4AAAAJ:1qzjygNMrQYC)\n", + "* When pressure is provided, the inverse superancillary for $T(p)$ is used, which introduces a very small error" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ab07d156-01ad-43c2-902c-6f45ee76dfa6", + "metadata": {}, + "outputs": [], + "source": [ + "import json\n", + "import timeit\n", + "import CoolProp.CoolProp as CP\n", + "import numpy as np\n", + "import matplotlib.pyplot as plt\n", + "import urllib\n", + "from zipfile import ZipFile\n", + "from pathlib import Path" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "bad6e729-92f7-42d2-a53e-ff1c11263af1", + "metadata": {}, + "outputs": [], + "source": [ + "AS = CP.AbstractState('HEOS','Water')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0d7a3783-b7fa-471b-902b-539fe3f8769a", + "metadata": {}, + "outputs": [], + "source": [ + "# See caveat noted above. The use of superancillary functions necessarily changes the critical point for the fluid\n", + "# Not usually by an amount that will be meaningful in practical applications\n", + "for superanc in [False, True]:\n", + " CP.set_config_bool(CP.ENABLE_SUPERANCILLARIES, superanc)\n", + " print(superanc, AS.T_critical())" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "58913d10-19c7-4b47-858c-60c7e9a66ec8", + "metadata": {}, + "outputs": [], + "source": [ + "# The JSON data for the expansions can be accessed from CoolProp\n", + "jSuper = json.loads(CP.get_fluid_param_string(\"WATER\", \"JSON\"))[0][\"EOS\"][0][\"SUPERANCILLARY\"]\n", + "SA = CP.SuperAncillary(json.dumps(jSuper))\n", + "\n", + "AS = CP.AbstractState('HEOS','Water')\n", + "Tt = AS.Ttriple()\n", + "Tc = AS.T_critical()\n", + "\n", + "Ts = np.linspace(Tt, 647.0959999999873, 5*10**5)\n", + "ps = np.zeros_like(Ts)\n", + "SA.eval_sat_many(Ts, 'P', 0, ps)\n", + "plt.plot(1/Ts, ps)\n", + "plt.yscale('log'); plt.gca().set(xlabel='$1/T$ / 1/K', ylabel='$p$ / Pa');" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "418b1527-9d80-44ca-9461-5cf1cb5ad35d", + "metadata": {}, + "outputs": [], + "source": [ + "# At the lower level, calling with a buffer of points\n", + "tic = timeit.default_timer()\n", + "SA.eval_sat_many(Ts, 'P', 0, ps)\n", + "toc = timeit.default_timer()\n", + "print((toc-tic)/len(Ts)*1e6, 'μs/call')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "54f6ad37-0813-4f8a-b7ba-8752b550587e", + "metadata": {}, + "outputs": [], + "source": [ + "# With superancillaries disabled\n", + "CP.set_config_bool(CP.ENABLE_SUPERANCILLARIES, False)\n", + "QT_INPUTS = CP.QT_INPUTS\n", + "tic = timeit.default_timer()\n", + "for T_ in Ts:\n", + " AS.update(QT_INPUTS, 0, T_)\n", + "toc = timeit.default_timer()\n", + "print((toc-tic)/len(Ts)*1e6, 'μs/call')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "5d254da7-0080-4549-9222-0f0b276fd6d5", + "metadata": {}, + "outputs": [], + "source": [ + "# With superancillaries enabled, three superancillary functions are evaluated\n", + "CP.set_config_bool(CP.ENABLE_SUPERANCILLARIES, True)\n", + "QT_INPUTS = CP.QT_INPUTS\n", + "tic = timeit.default_timer()\n", + "for T_ in Ts:\n", + " AS.update(QT_INPUTS, 0, T_)\n", + "toc = timeit.default_timer()\n", + "print((toc-tic)/len(Ts)*1e6, 'μs/call')" + ] + }, + { + "cell_type": "markdown", + "id": "f8731b27-90f9-413a-8cfc-363d6feea0f1", + "metadata": {}, + "source": [ + "If pressure is specified, the speedup is even greater because one must also iterate for the pressure of interest:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "72969532-5b98-4c44-adc9-204d16127e9b", + "metadata": {}, + "outputs": [], + "source": [ + "pssmall = np.geomspace(ps[0], ps[-1]*(1-1e-10), 10**4) # The full equilibrium is slow\n", + "CP.set_config_bool(CP.ENABLE_SUPERANCILLARIES, False)\n", + "PQ_INPUTS = CP.PQ_INPUTS\n", + "tic = timeit.default_timer()\n", + "for p_ in pssmall:\n", + " AS.update(PQ_INPUTS, p_, 0)\n", + "toc = timeit.default_timer()\n", + "print((toc-tic)/len(pssmall)*1e6, 'μs/call')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "960463cb-9574-4ab7-b3be-23a932470d30", + "metadata": {}, + "outputs": [], + "source": [ + "# With superancillaries enabled, one evaluates T(p) from an inverse function and then uses that T\n", + "CP.set_config_bool(CP.ENABLE_SUPERANCILLARIES, True)\n", + "PQ_INPUTS = CP.PQ_INPUTS\n", + "tic = timeit.default_timer()\n", + "for p_ in pssmall:\n", + " AS.update(PQ_INPUTS, p_, 0)\n", + "toc = timeit.default_timer()\n", + "print((toc-tic)/len(pssmall)*1e6, 'μs/call')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "56dee520-1a03-45dc-bd2e-c8343da27e59", + "metadata": {}, + "outputs": [], + "source": [ + "CP.set_config_bool(CP.ENABLE_SUPERANCILLARIES, True)" + ] + }, + { + "cell_type": "markdown", + "id": "cecc435c-89ad-47f5-a368-3daba910a294", + "metadata": {}, + "source": [ + "## Other validation checks to confirm accuracy" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d7635fe7-94f7-4415-bcb3-403c5efb5d42", + "metadata": {}, + "outputs": [], + "source": [ + "def get_hfg(T):\n", + " \"\"\" Latent heat \"\"\"\n", + " AS.update(CP.QT_INPUTS, 0, T)\n", + " return AS.saturated_vapor_keyed_output(CP.iHmolar)-AS.saturated_liquid_keyed_output(CP.iHmolar)\n", + " \n", + "CP.set_config_bool(CP.ENABLE_SUPERANCILLARIES, False)\n", + "HFG_SA = np.array([get_hfg(T_) for T_ in Ts])\n", + "CP.set_config_bool(CP.ENABLE_SUPERANCILLARIES, True)\n", + "HFG_NON = np.array([get_hfg(T_) for T_ in Ts])\n", + "\n", + "plt.plot(Ts, np.abs(HFG_NON/HFG_SA-1))\n", + "CP.set_config_bool(CP.ENABLE_SUPERANCILLARIES, True)\n", + "plt.yscale('log')\n", + "plt.ylabel(r'$|\\Delta h_{fg, non}/\\Delta h_{fg, sa} - 1|$')\n", + "plt.xlabel('$T$ / K');" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b7eb7d11-f782-46b4-a245-07d05aa038f8", + "metadata": {}, + "outputs": [], + "source": [ + "def get_sf(T):\n", + " \"\"\" liquid entropy \"\"\"\n", + " AS.update(CP.QT_INPUTS, 0, T)\n", + " return AS.saturated_liquid_keyed_output(CP.iSmolar)\n", + " \n", + "CP.set_config_bool(CP.ENABLE_SUPERANCILLARIES, False)\n", + "SF_SA = np.array([get_sf(T_) for T_ in Ts])\n", + "CP.set_config_bool(CP.ENABLE_SUPERANCILLARIES, True)\n", + "SF_NON = np.array([get_sf(T_) for T_ in Ts])\n", + "\n", + "plt.plot(Ts, np.abs(SF_NON - SF_SA))\n", + "plt.yscale('log')\n", + "plt.ylabel(r\"$|s'_{non} - s'_{sa}|$ / J/mol\")\n", + "plt.xlabel('$T$ / K');\n", + "\n", + "plt.figure()\n", + "plt.plot(Ts, SF_NON)\n", + "plt.title(r'Note value goes towards zero at $T\\to 273.16$ K')\n", + "plt.gca().set(ylabel=r\"$s'_{non}$ / J/mol\", xlabel='$T$ / K')\n", + "\n", + "CP.set_config_bool(CP.ENABLE_SUPERANCILLARIES, True)" + ] + }, + { + "cell_type": "markdown", + "id": "f05b9de1-27d7-42ce-a35c-08cbb5b99d25", + "metadata": {}, + "source": [ + "## Checks against extended precision" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "933cb2e5-d31e-4fac-a1d9-b4aa82e079a0", + "metadata": {}, + "outputs": [], + "source": [ + "outputversion = '2025.04.27'\n", + "if not Path(f'{outputversion}.zip').exists():\n", + " print('Downloading the chebyshev output file to ', Path('.').absolute())\n", + " urllib.request.urlretrieve(f'https://github.com/CoolProp/fastchebpure/archive/refs/tags/{outputversion}.zip', f'{outputversion}.zip')\n", + "\n", + " with ZipFile(f'{outputversion}.zip') as z:\n", + " print(Path(f'{outputversion}.zip').parent.absolute())\n", + " z.extractall(Path(f'{outputversion}.zip').parent.absolute())\n", + "\n", + " with (Path('.') / f'fastchebpure-{outputversion}' / '.gitignore').open('w') as fp:\n", + " fp.write(\"*\")\n", + "\n", + "outputcheck = (Path('.') / f'fastchebpure-{outputversion}' / 'outputcheck').absolute()\n", + "assert outputcheck.exists()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e26150cd-0e6a-477a-90c9-4aa11e076d7e", + "metadata": {}, + "outputs": [], + "source": [ + "import matplotlib\n", + "import matplotlib.pyplot as plt\n", + "import json\n", + "import numpy as np\n", + "import pandas as pd\n", + "import CoolProp.CoolProp as CP\n", + "\n", + "fluid = 'Water'\n", + "\n", + "CP.set_config_bool(CP.ENABLE_SUPERANCILLARIES, False)\n", + "\n", + "AS = CP.AbstractState('HEOS', f\"{fluid}\")\n", + "jSuper = json.loads(CP.get_fluid_param_string(f\"{fluid}\", \"JSON\"))[0]['EOS'][0]['SUPERANCILLARY']\n", + "superanc = CP.SuperAncillary(json.dumps(jSuper))\n", + "RPname = AS.fluid_param_string(\"REFPROP_name\")\n", + "\n", + "# Load extended precision calcs from the release on github\n", + "chk = json.load(open(f'{outputcheck}/{fluid}_check.json'))\n", + "df = pd.DataFrame(chk['data'])\n", + "# df.info() # uncomment to see what fields are available\n", + "\n", + "Tcrit_num = AS.get_fluid_parameter_double(0, \"SUPERANC::Tcrit_num\")\n", + "T = df['T / K'].to_numpy()\n", + "Theta = (Tcrit_num-T)/Tcrit_num\n", + "\n", + "fig, axes = plt.subplots(3, 1, sharex=True, figsize=(6,10))\n", + "\n", + "\n", + "plt.sca(axes[0])\n", + "rhoL_anc = np.zeros_like(T)\n", + "superanc.eval_sat_many(T, 'D', 0, rhoL_anc)\n", + "err = np.abs(df[\"rho'(mp) / mol/m^3\"]/rhoL_anc-1)\n", + "plt.plot(Theta, err, 'o', label=r'$\\Upsilon$:SA')\n", + "\n", + "errCP = np.abs(df[\"rho'(mp) / mol/m^3\"]/CP.PropsSI('Dmolar', 'T', T, 'Q', 0, f'HEOS::{fluid}')-1)\n", + "plt.plot(Theta, errCP, '^', label=r'$\\Upsilon$:HEOS')\n", + "\n", + "try:\n", + " errRP = np.abs(df[\"rho'(mp) / mol/m^3\"]/CP.PropsSI('Dmolar', 'T', T, 'Q', 0, f'REFPROP::{RPname}')-1)\n", + " plt.plot(Theta, errRP, 'x', label=r'$\\Upsilon$:REFPROP')\n", + "except BaseException as BE:\n", + " print(BE)\n", + "\n", + "plt.legend(loc='best')\n", + "plt.ylabel(r\"$|\\rho_{{\\rm \\Upsilon}}'/\\rho_{{\\rm ep}}'-1|$\")\n", + "plt.yscale('log')\n", + "\n", + "\n", + "\n", + "plt.sca(axes[1])\n", + "rhoV_anc = np.zeros_like(T)\n", + "superanc.eval_sat_many(T, 'D', 1, rhoV_anc)\n", + "err = np.abs(df[\"rho''(mp) / mol/m^3\"]/rhoV_anc-1)\n", + "plt.plot(Theta, err, 'o', label=r'$\\Upsilon$:SA')\n", + "\n", + "errCP = np.abs(df[\"rho''(mp) / mol/m^3\"]/CP.PropsSI('Dmolar', 'T', T, 'Q', 1, f'HEOS::{fluid}')-1)\n", + "plt.plot(Theta, errCP, '^', label=r'$\\Upsilon$:HEOS')\n", + "\n", + "try:\n", + " errRP = np.abs(df[\"rho''(mp) / mol/m^3\"]/CP.PropsSI('Dmolar', 'T', T, 'Q', 1, f'REFPROP::{RPname}')-1)\n", + " plt.plot(Theta, errRP, 'x', label=r'$\\Upsilon$:REFPROP')\n", + "except BaseException as BE:\n", + " print(BE)\n", + "\n", + "plt.legend(loc='best')\n", + "plt.ylabel(r\"$|\\rho_{{\\rm \\Upsilon}}''/\\rho_{{\\rm ep}}''-1|$\")\n", + "plt.yscale('log')\n", + "\n", + "\n", + "\n", + "plt.sca(axes[2])\n", + "p_anc = np.zeros_like(T)\n", + "superanc.eval_sat_many(T, 'P', 1, p_anc)\n", + "err = np.abs(df[\"p(mp) / Pa\"]/p_anc-1)\n", + "plt.plot(Theta, err, 'o', label=r'$\\Upsilon$:SA')\n", + "\n", + "errCP = np.abs(df[\"p(mp) / Pa\"]/CP.PropsSI('P', 'T', T, 'Q', 1, f'HEOS::{fluid}')-1)\n", + "plt.plot(Theta, errCP, '^', label=r'$\\Upsilon$:HEOS')\n", + "\n", + "try:\n", + " errRP = np.abs(df[\"p(mp) / Pa\"]/CP.PropsSI('P', 'T', T, 'Q', 1, f'REFPROP::{RPname}')-1)\n", + " plt.plot(Theta, errRP, 'x', label=r'$\\Upsilon$:REFPROP')\n", + "except BaseException as BE:\n", + " print(BE)\n", + "plt.legend(loc='best')\n", + "\n", + "# print(CP.PropsSI('gas_constant', 'T', T[0], 'Q', 1, f'HEOS::{fluid}'))\n", + "# print(CP.PropsSI('gas_constant', 'T', T[0], 'Q', 1, f'REFPROP::{fluid}'))\n", + "\n", + "plt.ylabel(r\"$|p_{{\\rm \\Upsilon}}/p_{{\\rm ep}}-1|$\")\n", + "plt.yscale('log')\n", + "\n", + "plt.sca(axes[2])\n", + "plt.xlabel(r'$\\Theta=(T_{{\\rm crit,num}}-T)/T_{{\\rm crit,num}}$')\n", + "plt.xscale('log')\n", + "\n", + "for ax in axes:\n", + " ax.axhline(1e-12, dashes=[2,2])\n", + " ax.axvline(1e-6, dashes=[2,2])\n", + "\n", + "plt.tight_layout(pad=0.2)\n", + "plt.show()" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.2" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Web/coolprop/index.rst b/Web/coolprop/index.rst index f5367f57..8381dc91 100644 --- a/Web/coolprop/index.rst +++ b/Web/coolprop/index.rst @@ -17,3 +17,4 @@ This section includes information about the CoolProp software, listings of input PCSAFT.rst examples.rst changelog.rst + SuperAncillary.ipynb diff --git a/Web/scripts/CPWeb/SphinxTools.py b/Web/scripts/CPWeb/SphinxTools.py index a57c90b3..67658f26 100644 --- a/Web/scripts/CPWeb/SphinxTools.py +++ b/Web/scripts/CPWeb/SphinxTools.py @@ -49,6 +49,17 @@ In this figure, we start off with a state point given by T,P and then we calcula .. image:: Consistencyplots/{fluid:s}.png +Superancillary Plots +==================== + +The following figure shows the accuracy of the superancillary functions relative to extended precision calculations carried out in C++ with the teqp library. The results of the iterative calculations with REFPROP and CoolProp are also shown. + +.. note:: + + You can download the script that generated the following figure here: :download:`(link to script)`, right-click the link and then save as... or the equivalent in your browser. You can also download this figure :download:`as a PDF`. + +.. image:: Superancillaryplots/{fluid:s}.png + """ table_template = """ Parameter, Value diff --git a/Web/scripts/__init__.py b/Web/scripts/__init__.py index 0aaf227a..c992e204 100644 --- a/Web/scripts/__init__.py +++ b/Web/scripts/__init__.py @@ -84,6 +84,7 @@ add_to_task_list("coolprop.tabular.speed.py") add_to_task_list("fluid_properties.phase_envelope.py") add_to_task_list("fluid_properties.PurePseudoPure.py") add_to_task_list("fluid_properties.Mixtures.py") +add_to_task_list("fluid_properties.Superancillary.py") add_to_task_list("coolprop.parametric_table.py") add_to_task_list("coolprop.configuration.py") add_to_task_list("logo_2014.py") diff --git a/Web/scripts/fluid_properties.Superancillary.py b/Web/scripts/fluid_properties.Superancillary.py new file mode 100644 index 00000000..cb9fba9b --- /dev/null +++ b/Web/scripts/fluid_properties.Superancillary.py @@ -0,0 +1,159 @@ +from __future__ import print_function +import os.path +import CoolProp +import urllib.request +import subprocess +import sys +from pathlib import Path +from zipfile import ZipFile + +web_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..')) +root_dir = os.path.abspath(os.path.join(web_dir, '..')) +fluids_path = os.path.join(web_dir, 'fluid_properties', 'fluids') +plots_path = os.path.join(web_dir, 'fluid_properties', 'fluids', 'Superancillaryplots') + +outputversion = '2025.04.27' +if not Path(f'{outputversion}.zip').exists(): + print('Downloading the chebyshev output file to ', Path('.').absolute()) + urllib.request.urlretrieve(f'https://github.com/CoolProp/fastchebpure/archive/refs/tags/{outputversion}.zip', f'{outputversion}.zip') + + with ZipFile(f'{outputversion}.zip') as z: + z.extractall('.') + + with (Path('.') / f'fastchebpure-{outputversion}' / '.gitignore').open('w') as fp: + fp.write("*") + +outputcheck = (Path('.') / f'fastchebpure-{outputversion}' / 'outputcheck').absolute() + + +template = r""" +import matplotlib +matplotlib.use('Agg') # Force mpl to use a non-GUI backend +import matplotlib.pyplot as plt +import json +import numpy as np +import pandas as pd +import CoolProp.CoolProp as CP + +CP.set_config_bool(CP.ENABLE_SUPERANCILLARIES, False) + +AS = CP.AbstractState('HEOS', "{fluid}") + +# Skip pseudo-pure fluids, pure fluids only; pseudo-pure do not have superancillaries +if AS.fluid_param_string("pure") != "true": + quit() + +jEOS = json.loads(CP.get_fluid_param_string("{fluid}", "JSON"))[0]['EOS'][0] +if 'SUPERANCILLARY' not in jEOS: + fig = plt.figure() + fig.text(0.5, 0.5, 'Superancillary not available') + plt.savefig('{fluid:s}.png', dpi = 300) + plt.savefig('{fluid:s}.pdf') + plt.close() + quit() +else: + jSuper = jEOS['SUPERANCILLARY'] + +superanc = CP.SuperAncillary(json.dumps(jSuper)) +RPname = AS.fluid_param_string("REFPROP_name") + +# Load extended precision calcs from the release on github +chk = json.load(open('{outputcheck}/{fluid}_check.json')) +df = pd.DataFrame(chk['data']) +# df.info() # uncomment to see what fields are available + +Tcrit_num = AS.get_fluid_parameter_double(0, "SUPERANC::Tcrit_num") +T = df['T / K'].to_numpy() +Theta = (Tcrit_num-T)/Tcrit_num + +fig, axes = plt.subplots(3, 1, sharex=True, figsize=(3.5,7)) + + +plt.sca(axes[0]) +rhoL_anc = np.zeros_like(T) +superanc.eval_sat_many(T, 'D', 0, rhoL_anc) +err = np.abs(df["rho'(mp) / mol/m^3"]/rhoL_anc-1) +plt.plot(Theta, err, 'o', label=r'$\Upsilon$:SA') + +errCP = np.abs(df["rho'(mp) / mol/m^3"]/CP.PropsSI('Dmolar', 'T', T, 'Q', 0, f'HEOS::{fluid}')-1) +plt.plot(Theta, errCP, '^', label=r'$\Upsilon$:HEOS') + +try: + errRP = np.abs(df["rho'(mp) / mol/m^3"]/CP.PropsSI('Dmolar', 'T', T, 'Q', 0, f'REFPROP::{{RPname}}')-1) + plt.plot(Theta, errRP, 'x', label=r'$\Upsilon$:REFPROP') +except BaseException as BE: + print(BE) + +plt.legend(loc='best') +plt.ylabel(r"$|\rho_{{\rm \Upsilon}}'/\rho_{{\rm ep}}'-1|$") +plt.yscale('log') + + + +plt.sca(axes[1]) +rhoV_anc = np.zeros_like(T) +superanc.eval_sat_many(T, 'D', 1, rhoV_anc) +err = np.abs(df["rho''(mp) / mol/m^3"]/rhoV_anc-1) +plt.plot(Theta, err, 'o', label=r'$\Upsilon$:SA') + +errCP = np.abs(df["rho''(mp) / mol/m^3"]/CP.PropsSI('Dmolar', 'T', T, 'Q', 1, f'HEOS::{fluid}')-1) +plt.plot(Theta, errCP, '^', label=r'$\Upsilon$:HEOS') + +try: + errRP = np.abs(df["rho''(mp) / mol/m^3"]/CP.PropsSI('Dmolar', 'T', T, 'Q', 1, f'REFPROP::{{RPname}}')-1) + plt.plot(Theta, errRP, 'x', label=r'$\Upsilon$:REFPROP') +except BaseException as BE: + print(BE) + +plt.legend(loc='best') +plt.ylabel(r"$|\rho_{{\rm \Upsilon}}''/\rho_{{\rm ep}}''-1|$") +plt.yscale('log') + + + +plt.sca(axes[2]) +p_anc = np.zeros_like(T) +superanc.eval_sat_many(T, 'P', 1, p_anc) +err = np.abs(df["p(mp) / Pa"]/p_anc-1) +plt.plot(Theta, err, 'o', label=r'$\Upsilon$:SA') + +errCP = np.abs(df["p(mp) / Pa"]/CP.PropsSI('P', 'T', T, 'Q', 1, f'HEOS::{fluid}')-1) +plt.plot(Theta, errCP, '^', label=r'$\Upsilon$:HEOS') + +try: + errRP = np.abs(df["p(mp) / Pa"]/CP.PropsSI('P', 'T', T, 'Q', 1, f'REFPROP::{{RPname}}')-1) + plt.plot(Theta, errRP, 'x', label=r'$\Upsilon$:REFPROP') +except BaseException as BE: + print(BE) +plt.legend(loc='best') + +# print(CP.PropsSI('gas_constant', 'T', T[0], 'Q', 1, f'HEOS::{fluid}')) +# print(CP.PropsSI('gas_constant', 'T', T[0], 'Q', 1, f'REFPROP::{fluid}')) + +plt.ylabel(r"$|p_{{\rm \Upsilon}}/p_{{\rm ep}}-1|$") +plt.yscale('log') + +plt.sca(axes[2]) +plt.xlabel(r'$\Theta=(T_{{\rm crit,num}}-T)/T_{{\rm crit,num}}$') +plt.xscale('log') + +plt.suptitle('Superancillary v. Extended Precision') +plt.tight_layout(pad=0.2, rect=(0,0,1,0.95)) +plt.savefig('{fluid:s}.png', dpi = 300) +plt.savefig('{fluid:s}.pdf') +plt.close() +""" +if not os.path.exists(plots_path): + os.makedirs(plots_path) + +from pathlib import Path + +for fluid in CoolProp.__fluids__: + print('fluid:', fluid) + file_string = template.format(fluid=fluid, outputcheck=outputcheck) + file_path = os.path.join(plots_path, fluid + '.py') + print('Writing to', file_path) + with open(file_path, 'w') as fp: + fp.write(file_string) + print('calling:', 'python "' + fluid + '.py"', 'in', plots_path) + subprocess.check_call('python -u "' + fluid + '.py"', cwd=plots_path, stdout=sys.stdout, stderr=sys.stderr, shell=True) diff --git a/_py_backend/backend.py b/_py_backend/backend.py index 6e1d266b..ffa85317 100644 --- a/_py_backend/backend.py +++ b/_py_backend/backend.py @@ -4,10 +4,12 @@ import os import sys from pathlib import Path +# + def build_sdist(wheel_directory, config_settings=None): return _orig.build_sdist(wheel_directory, config_settings) def build_wheel(wheel_directory, config_settings=None, metadata_directory=None): sys.path.append(str(Path(__file__).parent)) os.chdir('wrappers/Python') - return _orig.build_wheel(wheel_directory, config_settings, metadata_directory) \ No newline at end of file + return _orig.build_wheel(wheel_directory, config_settings, metadata_directory) diff --git a/dev/docker/boost_bcp_docker/Dockerfile b/dev/docker/boost_bcp_docker/Dockerfile index 96ba5f1d..f8b8212e 100644 --- a/dev/docker/boost_bcp_docker/Dockerfile +++ b/dev/docker/boost_bcp_docker/Dockerfile @@ -6,14 +6,14 @@ FROM ubuntu:24.04 RUN apt-get -y -m update && DEBIAN_FRONTEND=noninteractive apt-get install -y cmake g++ git zip wget xz-utils RUN mkdir /boost && \ - wget -c --no-check-certificate https://boostorg.jfrog.io/artifactory/main/release/1.87.0/source/boost_1_87_0_rc1.tar.gz -O - | tar -xz -C /boost && \ + wget -c --no-check-certificate https://archives.boost.io/release/1.87.0/source/boost_1_87_0.tar.gz -O - | tar -xz -C /boost && \ cd /boost/boost_1_87_0/ && \ ./bootstrap.sh && \ ./b2 tools/bcp WORKDIR /boost/boost_1_87_0/ RUN mkdir /boost_CoolProp && \ - ./bin.v2/tools/bcp/gcc-13/debug/x86_64/link-static/threading-multi/visibility-hidden/bcp predef/other/endian.h boost/fusion/sequence/intrinsic/size.hpp boost/fusion/algorithm/iteration/for_each.hpp boost/fusion/include/mpl.hpp boost/fusion/sequence/intrinsic/at.hpp boost/utility/string_ref.hpp boost/utility/string_view.hpp boost/mpl/size.hpp boost/variant.hpp boost/assert.hpp boost/preprocessor.hpp boost/fusion/support/is_sequence.hpp boost/optional.hpp boost/operators.hpp boost/version.hpp /boost_CoolProp && \ + dist/bin/bcp predef/other/endian.h boost/fusion/sequence/intrinsic/size.hpp boost/fusion/algorithm/iteration/for_each.hpp boost/fusion/include/mpl.hpp boost/fusion/sequence/intrinsic/at.hpp boost/utility/string_ref.hpp boost/utility/string_view.hpp boost/mpl/size.hpp boost/variant.hpp boost/assert.hpp boost/preprocessor.hpp boost/fusion/support/is_sequence.hpp boost/optional.hpp boost/operators.hpp boost/version.hpp math/tools/toms748_solve.hpp /boost_CoolProp && \ zip -r /boost_CoolProp.zip /boost_CoolProp && \ tar cJf /boost_CoolProp.tar.xz /boost_CoolProp diff --git a/dev/docker/boost_bcp_docker/boost_CoolProp.tar.xz b/dev/docker/boost_bcp_docker/boost_CoolProp.tar.xz index 9d0d2ed8..18b50031 100644 Binary files a/dev/docker/boost_bcp_docker/boost_CoolProp.tar.xz and b/dev/docker/boost_bcp_docker/boost_CoolProp.tar.xz differ diff --git a/dev/fluids/Methanol.json b/dev/fluids/Methanol.json index 55c12b74..ebb15960 100644 --- a/dev/fluids/Methanol.json +++ b/dev/fluids/Methanol.json @@ -586,7 +586,4951 @@ "molar_mass_units": "kg/mol", "p_max": 800000000.0, "p_max_units": "Pa", - "pseudo_pure": false + "pseudo_pure": false, + "SUPERANCILLARY": { + "crit_anc": { + "Tc / K": 513.3795127230579, + "Theta_min": 0.01, + "_note": "coefficients are for the function like ln(|rho^A-rhoc|) = sum_i c_i ln(Theta)^i with Theta=(Tc-T)/Tc", + "cL": [ + 13.588958467777012, + 2.329724505725598, + 0.39734985021114366, + 0.04041530798933558, + 0.002153746702789379, + 5.839947965389418e-05, + 6.371257545160283e-07 + ], + "cV": [ + 19.9246087584605, + 6.38697388386527, + 1.40175849612776, + 0.1592197710182561, + 0.009383254605084629, + 0.0002774503320439645, + 3.2579979999924376e-06 + ], + "rhoc / mol/m^3": 8785.166579383907 + }, + "jexpansions_p": [ + { + "coef": [ + 0.5068710678903476, + 0.38399330281872734, + 0.07098300748615331, + 0.008105555975006392, + 0.000628111895504661, + 3.436784561710772e-05, + 1.3338783822657187e-06, + 3.53621193418222e-08, + 5.543371042917658e-10, + 1.6627495045193327e-12, + -1.1633893547718793e-13, + -1.1989883610966021e-15, + 2.1684043449710089e-16 + ], + "xmax": 186.30930598801703, + "xmin": 175.61 + }, + { + "coef": [ + 1.2717607631203514, + 0.3190136977218111, + 0.018505731833253453, + 0.0006511185692523919, + 1.535445984837231e-05, + 2.5227607450722305e-07, + 2.8829786291104258e-09, + 2.164535666730649e-11, + 8.42753153522682e-14, + 5.318459412859491e-16, + 5.783770833392075e-16, + 1.378390997562631e-15, + 1.8041124150158794e-16 + ], + "xmax": 189.87574131735602, + "xmin": 186.30930598801703 + }, + { + "coef": [ + 2.2841047942133654, + 0.725157916142805, + 0.05330222717827398, + 0.0023711735688986342, + 7.041647246804704e-05, + 1.4475394253051867e-06, + 2.045644067282458e-08, + 1.8489524545652022e-10, + 7.734849337557633e-13, + -2.0742206705888715e-15, + 5.199084361136526e-16, + -1.1305310996574887e-15, + -5.551115123125783e-17 + ], + "xmax": 194.63098842314136, + "xmin": 189.87574131735602 + }, + { + "coef": [ + 4.795535616911688, + 1.894982951331741, + 0.17372180794142614, + 0.00961072977731201, + 0.00035299477315139444, + 8.892559453443291e-06, + 1.5137259376025997e-07, + 1.5790448164993236e-09, + 5.9735223017683796e-12, + -6.918972335810329e-14, + -8.098383445128206e-16, + 5.877937395877893e-16, + 1.7208456881689926e-15 + ], + "xmax": 200.9713178975218, + "xmin": 194.63098842314136 + }, + { + "coef": [ + 12.083295905525596, + 5.8191441597179425, + 0.6520940862252957, + 0.043924514002020645, + 0.001949225045784695, + 5.8540849938129e-05, + 1.157007338423748e-06, + 1.300536896173364e-08, + 2.2172528284638437e-11, + -1.4018098061362345e-12, + -4.509699156451257e-15, + 3.5104984342886167e-15, + 1.2212453270876722e-15 + ], + "xmax": 209.42509053002905, + "xmin": 200.9713178975218 + }, + { + "coef": [ + 37.308217631843725, + 21.34271206140224, + 2.851186091088178, + 0.22766814160061344, + 0.011843994086824893, + 0.0004087061111242139, + 8.888271717954105e-06, + 9.433941096185814e-08, + -4.604983181836016e-10, + -2.35142895873767e-11, + -5.685544843999912e-14, + -2.308060933301215e-14, + 5.662137425588298e-15 + ], + "xmax": 220.69678737337208, + "xmin": 209.42509053002905 + }, + { + "coef": [ + 142.4013128268024, + 93.91358015645993, + 14.507481304983067, + 1.3282122666411664, + 0.07791684315717382, + 0.0029369827357307574, + 6.449259587379527e-05, + 4.3954444853158715e-07, + -1.4170423638854223e-08, + -2.6962818208665635e-10, + 3.4242343125545256e-12, + 1.4535475622027774e-13, + 2.220446049250313e-14 + ], + "xmax": 235.72571649782944, + "xmin": 220.69678737337208 + }, + { + "coef": [ + 664.8289767332723, + 488.84425057112503, + 84.21782681277132, + 8.484670122951234, + 0.5336638350676045, + 0.02042624023224939, + 0.0003832157709536625, + -1.8427048947637566e-06, + -2.071901607143892e-07, + -2.8013622795778116e-10, + 1.1475740620961786e-10, + -9.357222633168736e-14, + -7.105427357601002e-14 + ], + "xmax": 255.7642886637726, + "xmin": 235.72571649782944 + }, + { + "coef": [ + 3663.1296194767588, + 2897.078331062794, + 533.719559216274, + 56.268022247608606, + 3.548906519062848, + 0.12274868060182209, + 0.0011501785152972005, + -6.330983412672848e-05, + -1.176721588164778e-06, + 5.243871336662318e-08, + 7.985874233646038e-10, + -5.4876552699222126e-11, + 2.842170943040401e-14 + ], + "xmax": 282.4823848850301, + "xmin": 255.7642886637726 + }, + { + "coef": [ + 22391.22433166585, + 18345.553051587147, + 3445.736343560307, + 357.6636056291822, + 20.645690061808946, + 0.5154527822880131, + -0.006469857804551235, + -0.00047779628445242776, + 1.0272957150494716e-05, + 5.395496931546001e-07, + -1.287097473910367e-08, + 1.629463317437081e-10, + 4.0472514228895307e-11 + ], + "xmax": 318.1065131800401, + "xmin": 282.4823848850301 + }, + { + "coef": [ + 84074.2664516517, + 44219.53799379542, + 4993.682390902326, + 295.8457667230962, + 8.83777652702954, + 0.06899169309028971, + -0.0023308248448544425, + -1.0573446465909659e-07, + 2.3102855023801995e-06, + 2.85310549321846e-08, + 1.880592656991548e-10, + -3.208092434509761e-11, + 1.318767317570746e-11 + ], + "xmax": 344.8246094012976, + "xmin": 318.1065131800401 + }, + { + "coef": [ + 158382.4250827755, + 25632.997675500053, + 857.283694311518, + 14.591549866505387, + 0.11763359058203349, + 0.0001400514284003462, + -2.533408417383351e-06, + 2.5802376347736276e-08, + 3.837951057098744e-10, + 7.277123458013559e-11, + 1.0902277982973806e-11, + -1.1458467398508763e-10, + 2.091837814077735e-11 + ], + "xmax": 353.7306414750501, + "xmin": 344.8246094012976 + }, + { + "coef": [ + 229247.72848394254, + 46236.283058702575, + 1915.4451007619177, + 39.854205777939214, + 0.37981473049184655, + 0.0003531584257935289, + -7.888565603073124e-06, + 3.2370699687152643e-07, + 4.52054605130567e-09, + 1.8517953566746046e-10, + 6.765999142541359e-11, + -2.2185256336767175e-11, + -1.8189894035458565e-12 + ], + "xmax": 365.6053509067201, + "xmin": 353.7306414750501 + }, + { + "coef": [ + 389650.61484802765, + 119464.4916278592, + 7481.621929901335, + 231.19591010593172, + 3.146203258574365, + 0.00458111912916544, + 0.0001641223145775579, + 1.6604538126980126e-05, + -1.434152586303519e-07, + -3.8098055970682045e-08, + -2.2725948516146915e-09, + -4.779881624720976e-12, + 2.546585164964199e-11 + ], + "xmax": 385.64392307266326, + "xmin": 365.6053509067201 + }, + { + "coef": [ + 570412.2068312896, + 54621.915382590945, + 1050.5637766886891, + 9.819815610525707, + 0.03990827264597519, + 3.773379766735657e-05, + 4.979326191410538e-07, + -9.847140923258075e-10, + -5.286850914243451e-10, + 2.664401604568866e-11, + 1.4797896669471356e-10, + -8.977130578124615e-11, + -2.1827872842550278e-11 + ], + "xmax": 392.32344712797766, + "xmin": 385.64392307266326 + }, + { + "coef": [ + 710811.821310831, + 86813.98640465032, + 2121.646261695588, + 25.064577970605736, + 0.129365209749099, + 0.00020339544715578225, + 7.93040103888838e-07, + -1.7673739013704508e-07, + -9.359777760924414e-09, + 8.293180284054625e-11, + 7.713926467148912e-11, + -3.6090161162464275e-10, + 7.275957614183426e-11 + ], + "xmax": 401.22947920173016, + "xmin": 392.32344712797766 + }, + { + "coef": [ + 939908.4351877474, + 144497.7689073979, + 4426.795960332314, + 65.23496756102037, + 0.42121628975649594, + 0.0002956045100907923, + -7.506228945917796e-05, + -5.85862647507925e-06, + -2.501511224673279e-07, + -5.846170230101753e-09, + 2.1457903672378155e-10, + -8.361179966847988e-11, + 1.4551915228366852e-11 + ], + "xmax": 413.10418863340016, + "xmin": 401.22947920173016 + }, + { + "coef": [ + 1333377.0392694746, + 253899.07493872938, + 9592.157165554998, + 172.65876512677175, + 1.1693328698503394, + -0.026874368767610797, + -0.0026177446660510745, + -0.00013549020980303038, + -2.111623754679661e-06, + 3.308767843539527e-07, + 3.939669863184182e-08, + 2.0908116842320754e-09, + 5.820766091346741e-11 + ], + "xmax": 428.9371345422935, + "xmin": 413.10418863340016 + }, + { + "coef": [ + 1823080.150923156, + 231764.4072343104, + 5792.301509936478, + 66.01729740191524, + 0.022995190076359927, + -0.01946983587538582, + -0.0005054336289713102, + 2.119065186250375e-05, + 2.7465793000592177e-06, + 1.1883832755849885e-07, + 3.7096199228239625e-10, + 9.469929502534304e-11, + 2.0372681319713593e-10 + ], + "xmax": 440.2088313856365, + "xmin": 428.9371345422935 + }, + { + "coef": [ + 2147965.5261507537, + 87962.25100232974, + 702.0097740833203, + 2.4017146772334685, + -0.003287582900594568, + -8.779699193721458e-05, + 7.832036487553927e-07, + 4.846741037622952e-08, + 4.867499514556274e-11, + 1.0863743926670517e-09, + 4.852324519965683e-10, + -6.307516042802368e-10, + 0.0 + ], + "xmax": 443.9660636667508, + "xmin": 440.2088313856365 + }, + { + "coef": [ + 2361564.265546477, + 126233.41328734234, + 1306.8560063078858, + 5.50777106294667, + -0.015411548860395457, + -0.0001698124487640905, + 1.5159670472015713e-05, + 5.093370807719492e-07, + 3.0067505883909713e-09, + 1.096889506008481e-09, + 6.202364909388076e-10, + -2.1278286454453575e-10, + -5.820766091346741e-11 + ], + "xmax": 448.9757067082366, + "xmin": 443.9660636667508 + }, + { + "coef": [ + 2671727.208515154, + 185061.42958048804, + 2456.675346002796, + 12.386202705065438, + -0.03910270257801458, + 0.002108763817881119, + 0.00018292534333013316, + 3.9094320469317775e-06, + -1.9414068084751016e-08, + 3.510591355904401e-10, + 9.004055740491092e-10, + -2.8922513445770136e-10, + -1.4551915228366852e-11 + ], + "xmax": 455.655230763551, + "xmin": 448.9757067082366 + }, + { + "coef": [ + 3133042.2480616295, + 278428.7996733328, + 4673.834318155255, + 29.852543228183286, + 0.2690137595116452, + 0.038085379718913466, + 0.001785086706868603, + 4.100205224822565e-05, + 1.6469628375460305e-06, + 1.1585617321832996e-07, + 2.4800014187492796e-09, + -1.4031596918501328e-09, + 2.3283064365386963e-10 + ], + "xmax": 464.5612628373035, + "xmin": 455.655230763551 + }, + { + "coef": [ + 3647577.6664483137, + 234213.84322450412, + 2827.6763532929313, + 16.85984120158662, + 0.4249606890795116, + 0.02182081937041909, + 0.0006643342045430792, + 1.7069819819484833e-05, + 2.74549733544703e-07, + -2.448962226044699e-08, + -2.5187324034018878e-09, + -7.408966077522869e-10, + -5.820766091346741e-11 + ], + "xmax": 471.2407868926179, + "xmin": 464.5612628373035 + }, + { + "coef": [ + 3967518.6728414684, + 83212.7755062437, + 331.44140870803335, + 0.8550663171515756, + 0.00979514051527232, + 0.00014359919055849146, + 1.3055798642354189e-06, + 3.510429708463022e-09, + -1.5895768983185975e-09, + 2.0552381856263367e-09, + 9.715601818739685e-10, + -4.023760725848989e-11, + 0.0 + ], + "xmax": 473.467294911056, + "xmin": 471.2407868926179 + }, + { + "coef": [ + 4165612.003812981, + 115158.89303390078, + 613.1441032918914, + 2.5422389532510397, + 0.042859535412749415, + 0.0007453721669706063, + 4.949495082859566e-06, + -2.6872603050308415e-07, + -2.050783657593537e-08, + 1.1828931526641901e-09, + 5.633366747398321e-10, + -7.379596574802343e-10, + 2.9103830456733704e-10 + ], + "xmax": 476.4359722689735, + "xmin": 473.467294911056 + }, + { + "coef": [ + 4485427.315940629, + 205912.08833884975, + 1888.6057674560964, + 17.69752101468273, + 0.4974478011519966, + 0.005696551719462385, + -0.0008975265280025801, + -0.00010360699727583916, + -7.1769079807004145e-06, + -3.1604779336841805e-07, + 4.458558955977637e-10, + 1.1257509490658563e-09, + 8.731149137020111e-11 + ], + "xmax": 481.4456153104593, + "xmin": 476.4359722689735 + }, + { + "coef": [ + 4765134.044818303, + 72114.74560580577, + 227.75388485891514, + 0.8484348458028196, + 0.004916868868769824, + -0.00013037526283574033, + -6.2092463283545935e-06, + -1.2898586851287224e-07, + -1.981368542429435e-09, + 2.679860473391044e-09, + 1.2200528078112723e-09, + 9.336306459870218e-10, + 1.4551915228366852e-10 + ], + "xmax": 483.1154963242879, + "xmin": 481.4456153104593 + }, + { + "coef": [ + 4936118.824832263, + 99066.11768335401, + 426.8134248029062, + 2.1224637346488375, + -0.002044577736588825, + -0.0015114705863458321, + -5.3084691236425956e-05, + -8.858908463565257e-08, + 8.498020965901759e-08, + 7.337140549741716e-09, + 1.3358009263649276e-09, + -5.523238626864455e-11, + 8.731149137020111e-11 + ], + "xmax": 485.342004342726, + "xmin": 483.1154963242879 + }, + { + "coef": [ + 5172392.469517773, + 137581.93442058525, + 807.4058100134289, + 3.916248159875018, + -0.15940709689943633, + -0.009389409927329517, + 0.00019675756725901923, + 4.4668427058959397e-05, + 1.4764528297837643e-06, + -1.0845638299545326e-07, + -1.1218567842635728e-08, + -5.975873227981551e-10, + 4.656612873077393e-10 + ], + "xmax": 488.3106817006435, + "xmin": 485.342004342726 + }, + { + "coef": [ + 5454126.812770181, + 144175.45045728947, + 834.9675063719766, + 0.5678330043304826, + -0.1960256736932437, + 0.009627469044376434, + 0.001099108965404061, + -1.4604607399282463e-05, + -3.958688780935995e-06, + 9.760000956296219e-08, + 2.190031829238639e-08, + -1.294806329018929e-09, + 3.7834979593753815e-10 + ], + "xmax": 491.279359058561, + "xmin": 488.3106817006435 + }, + { + "coef": [ + 5648588.27527982, + 49543.339113836184, + 92.65601049741313, + -0.020842782913727795, + 0.0003212395175566114, + 9.169575709652532e-05, + 4.7019498619805974e-07, + -1.960948306690853e-08, + -1.5781055055936063e-09, + 4.081034924872705e-09, + 1.3904852009932315e-09, + -1.914354149214438e-09, + 2.9103830456733704e-11 + ], + "xmax": 492.26891817786685, + "xmin": 491.279359058561 + }, + { + "coef": [ + 5842614.55550347, + 145142.25933824017, + 752.834016199372, + 1.1242633100164154, + 0.2616556017046763, + 0.017491013827550583, + -0.00011828148579540292, + -1.0076185405826174e-05, + 9.520137367209184e-08, + -1.6429386717637767e-07, + -8.932131702101344e-09, + -1.3124166186689195e-09, + 5.820766091346741e-11 + ], + "xmax": 495.0868423887027, + "xmin": 492.26891817786685 + }, + { + "coef": [ + 6038157.325381873, + 49732.17008398546, + 86.07717698565243, + 0.18614072547503305, + 0.00585987130902218, + 5.378448846308157e-05, + -8.738411080615282e-07, + -3.3325287274861375e-08, + -3.694785066103894e-09, + 3.11270845696922e-09, + 8.454124851465637e-10, + -2.6333587601188965e-10, + 4.656612873077393e-10 + ], + "xmax": 496.02615045898125, + "xmin": 495.0868423887027 + }, + { + "coef": [ + 6155218.720578143, + 67401.39474953686, + 159.13999847830172, + 0.7220642217910593, + 0.020962669233723884, + 1.2357650392349876e-05, + -1.7687725902196085e-05, + -8.486783386803499e-07, + -3.153790965310421e-08, + 2.841532822764782e-09, + 1.4076264239183386e-09, + 2.2218808165874879e-10, + -1.1641532182693481e-10 + ], + "xmax": 497.2785612193527, + "xmin": 496.02615045898125 + }, + { + "coef": [ + 6314403.465198742, + 91926.50075667385, + 305.499176673834, + 2.504375014851561, + 0.03500730865472721, + -0.004433224336949908, + -0.00034910922566635155, + -1.1416278553925508e-05, + 3.3557718413328465e-07, + 7.793003899598781e-08, + 5.947200380318731e-09, + -3.5926493262585957e-10, + 4.0745362639427185e-10 + ], + "xmax": 498.94844223318125, + "xmin": 497.2785612193527 + }, + { + "coef": [ + 6500795.85360948, + 94490.22853337294, + 334.3620558326845, + 1.8570765073629922, + -0.1422071578665532, + -0.011858901173352468, + 7.022817294226787e-05, + 5.9305293009413264e-05, + 2.8103138424625173e-06, + -1.9061985539100303e-07, + -2.8124534321807473e-08, + -7.464654912723622e-10, + 5.238689482212067e-10 + ], + "xmax": 500.6183232470098, + "xmin": 498.94844223318125 + }, + { + "coef": [ + 6627683.466435236, + 32099.325556629796, + 37.99709955091486, + -0.012497487253421785, + -0.0031413152963799826, + -5.270595574618382e-06, + 1.6616041826615758e-06, + 1.1982483922439082e-08, + -3.833411394553645e-09, + 1.7379356016688184e-09, + 1.0560321221776171e-09, + -2.411248693890734e-10, + 6.402842700481415e-10 + ], + "xmax": 501.1749502516194, + "xmin": 500.6183232470098 + }, + { + "coef": [ + 6732953.9838594645, + 73321.1989711599, + 187.06723160735976, + -0.9824919113581257, + -0.0583426445099336, + 0.0029477331862595747, + 0.00011761087637423759, + -1.01696624609757e-05, + -1.812894639443815e-07, + 4.519995272869471e-08, + 1.249760680252283e-09, + -1.3661760020792178e-09, + -5.820766091346741e-11 + ], + "xmax": 502.4273610119909, + "xmin": 501.1749502516194 + }, + { + "coef": [ + 6831207.3528253455, + 24765.906086026218, + 19.714450236650052, + -0.05126869073869531, + -0.00016147176934535793, + 1.399695607031872e-05, + -7.25194265990468e-08, + 2.2551174452028436e-10, + -2.0881568937512413e-09, + 3.3687254338475242e-09, + 1.6371334047106728e-09, + 1.0909642269334953e-10, + 1.7462298274040222e-10 + ], + "xmax": 502.8448312654481, + "xmin": 502.4273610119909 + }, + { + "coef": [ + 6889220.914387507, + 33261.87436584491, + 33.75975218179258, + -0.1217997746690604, + 0.0004188789436089944, + 4.6433679809873203e-05, + -7.024817672420522e-07, + -1.714514489076477e-09, + -1.8943604875585024e-09, + 3.5241749931355898e-09, + 1.4816838454226075e-09, + -1.714514489076477e-09, + -5.820766091346741e-11 + ], + "xmax": 503.40145827005756, + "xmin": 502.8448312654481 + }, + { + "coef": [ + 6967217.745611173, + 44758.73811128723, + 57.16635110078592, + -0.24942684011280739, + 0.004010438925849419, + 0.00011439201675154676, + -3.4610207358788538e-06, + 5.482483454456811e-08, + -1.7394477914858373e-09, + 3.6020929407167944e-09, + 1.170935254187533e-09, + 2.2604860773568473e-10, + 6.402842700481415e-10 + ], + "xmax": 504.1436276095369, + "xmin": 503.40145827005756 + }, + { + "coef": [ + 7148452.58140611, + 136901.69642471537, + 480.0203794545635, + -1.9975195043628764, + 0.5089678961924937, + 0.006649451479156638, + -0.0003380249578777204, + 8.965834028008085e-05, + -2.7820093828688256e-06, + 2.229677784691444e-07, + 2.6393840884149977e-08, + -1.2481313695320567e-09, + 1.1641532182693481e-10 + ], + "xmax": 506.37013562797506, + "xmin": 504.1436276095369 + }, + { + "coef": [ + 7332264.129333746, + 46485.06039197564, + 53.88327335733654, + 0.14365621919544022, + 0.007550798749685483, + 5.4267889685733004e-05, + 1.840337313907462e-06, + 6.666207293955718e-08, + -1.120246750992876e-09, + 3.797799153012377e-09, + 1.3244750073727551e-09, + 1.8892417637739752e-10, + 8.149072527885437e-10 + ], + "xmax": 507.1123049674544, + "xmin": 506.37013562797506 + }, + { + "coef": [ + 7441371.212745397, + 62668.61118332091, + 101.30891720295264, + 0.7164756306788427, + 0.03087190698212859, + 0.00064578900267455, + 3.419335777786366e-05, + 1.7808393118084291e-06, + 8.867434141031702e-08, + 7.950375706038877e-09, + 2.061341971077517e-09, + -5.479427873273644e-10, + 1.1641532182693481e-10 + ], + "xmax": 508.1018640867602, + "xmin": 507.1123049674544 + }, + { + "coef": [ + 7584513.483794517, + 80554.45777838684, + 185.78793108281312, + 3.095690702976603, + 0.1724623059118724, + 0.010654357568305118, + 0.0008733125133997364, + 6.679615838466454e-05, + 4.587854314462658e-06, + 2.6654819039869694e-07, + 1.0403860227580981e-08, + -1.789126412387805e-09, + 5.820766091346741e-10 + ], + "xmax": 509.3542748471316, + "xmin": 508.1018640867602 + }, + { + "coef": [ + 7692438.008584382, + 27205.18082067316, + 24.400043686117908, + 0.2240506377192901, + 0.005659660754656658, + 0.00016464401322765595, + 4.644120974705155e-06, + 1.0271377278811211e-07, + -1.898104085986564e-09, + 3.877164557044456e-09, + 2.0600168561292197e-09, + 1.5187425858254203e-10, + 0.0 + ], + "xmax": 509.77174510058876, + "xmin": 509.3542748471316 + }, + { + "coef": [ + 7756219.805537796, + 36601.83312633874, + 50.70850375357083, + 0.8961880751466478, + 0.035965631874268246, + 0.0014005380962143386, + 3.554943947990284e-05, + -8.26590684548474e-07, + -2.0077453057422575e-07, + -1.54087220583922e-08, + 1.5831489906374014e-10, + -5.075608645445446e-10, + 4.0745362639427185e-10 + ], + "xmax": 510.32837210519835, + "xmin": 509.77174510058876 + }, + { + "coef": [ + 7820585.105630224, + 27746.800659589815, + 35.6245484744459, + 0.668111893694886, + 0.01959970640294165, + 0.000223696461916858, + -2.9514657371634282e-05, + -3.0944384253084287e-06, + -1.845155292690172e-07, + -2.3310622632131655e-09, + 1.981816297732361e-09, + -2.755826674469132e-12, + -1.1641532182693481e-10 + ], + "xmax": 510.7458423586555, + "xmin": 510.32837210519835 + }, + { + "coef": [ + 7857680.421151607, + 9316.808733099022, + 4.6385964516109635, + 0.03249009884643983, + 0.00021243375044632706, + -3.6592853100970587e-06, + -1.7264142315832779e-07, + -1.2830676511128349e-09, + -2.558637969176014e-09, + 5.818266980330189e-09, + 1.865144260247509e-09, + -4.681603983242911e-10, + -5.820766091346741e-11 + ], + "xmax": 510.88499910980784, + "xmin": 510.7458423586555 + }, + { + "coef": [ + 7879476.068124163, + 12483.178951982716, + 9.095221837441677, + 0.08343298519565025, + 0.00017777427030495573, + -4.25802257447617e-05, + -1.5473512397034224e-06, + -1.2264826812023363e-08, + -1.8214271290357494e-09, + 3.800487600093641e-09, + 1.3217865602914906e-09, + -5.068793075029468e-10, + 6.984919309616089e-10 + ], + "xmax": 511.0705414446777, + "xmin": 510.88499910980784 + }, + { + "coef": [ + 7913182.222201884, + 21242.986008090626, + 29.534979630419176, + 0.3334112036562213, + -0.013009096454704643, + -0.0011188034379235488, + -3.554118672849502e-06, + 3.977870444299544e-06, + 1.936397827250105e-07, + -5.396207330856918e-09, + 8.560097796064601e-10, + -1.9037476760488735e-09, + -1.1641532182693481e-10 + ], + "xmax": 511.3836441347706, + "xmin": 511.0705414446777 + }, + { + "coef": [ + 7941586.826194058, + 7135.261643173675, + 3.502869549869177, + 0.004633046723353551, + -0.00031606728621839047, + -2.081934911324993e-06, + 1.1591295631171787e-07, + 5.9738856410828915e-09, + -2.830671951755651e-09, + 3.878409848198065e-09, + 1.9423562431486763e-09, + 1.2008574461785636e-09, + -1.7462298274040222e-10 + ], + "xmax": 511.48801169813487, + "xmin": 511.3836441347706 + }, + { + "coef": [ + 7958276.815898097, + 9557.488526655941, + 6.265206861428157, + -0.0034728263292321186, + -0.0010242012774712224, + 5.821578963734637e-06, + 6.82545066736211e-07, + -5.822800956238967e-09, + -3.3740094680888835e-09, + 4.072501399050492e-09, + 1.981095335950118e-09, + -2.7960025887386617e-09, + 1.7462298274040222e-10 + ], + "xmax": 511.62716844928724, + "xmin": 511.48801169813487 + }, + { + "coef": [ + 7980650.06546389, + 12820.374335946359, + 10.828809431212727, + -0.0475214649166508, + -0.0022398555476622274, + 7.915562600210204e-05, + 1.1312484337399937e-06, + -1.2681703701720013e-07, + -1.4726476360820376e-09, + 4.3830306817554076e-09, + 1.903396696899072e-09, + -3.899975131489195e-10, + 0.0 + ], + "xmax": 511.81271078415705, + "xmin": 511.62716844928724 + }, + { + "coef": [ + 8010686.607854444, + 17223.253357154936, + 17.696702412874714, + -0.16931115389829124, + -0.0012950491297096486, + 0.00028009681469206763, + -7.777278967248941e-06, + -1.435031145338766e-07, + 2.266401047751828e-08, + 5.042836117292208e-09, + 2.058498514150815e-09, + 3.6977278734011425e-11, + 1.2223608791828156e-09 + ], + "xmax": 512.0601005639835, + "xmin": 511.81271078415705 + }, + { + "coef": [ + 8057243.226819778, + 29359.54653164849, + 43.014427912423194, + -0.6690156242128382, + 0.02504255739207521, + 0.0011241340527389943, + -6.148614753827454e-05, + 8.596454941183345e-06, + -6.866835504787301e-09, + 6.284758895652627e-09, + 3.9597894251176365e-09, + -3.494128137809897e-09, + 1.3387762010097504e-09 + ], + "xmax": 512.4775708174407, + "xmin": 512.0601005639835 + }, + { + "coef": [ + 8096500.18745955, + 9859.366428895697, + 4.310966980567357, + -0.012404459801657622, + 0.0004812453809813898, + 6.005360589798174e-06, + 1.816481040161037e-07, + 7.876039918146179e-09, + -2.637350435934112e-09, + 4.150749619684265e-09, + 1.9028471153163457e-09, + 1.7060278613186334e-09, + 1.1641532182693481e-10 + ], + "xmax": 512.616727568593, + "xmin": 512.4775708174407 + }, + { + "coef": [ + 8119555.045721985, + 13198.68395384467, + 7.485365097334673, + -0.0035984203387690603, + 0.002271987421501976, + 6.870595452507165e-05, + 3.6508246032414123e-06, + 1.956540452423408e-07, + 7.83993731114125e-09, + 8.807453710110428e-09, + 2.252001863448379e-09, + -7.386026796982266e-10, + -2.3283064365386963e-10 + ], + "xmax": 512.8022699034628, + "xmin": 512.616727568593 + }, + { + "coef": [ + 8146012.692513211, + 13259.16101121553, + 7.728748751456171, + 0.051502378772692, + 0.005319130142471571, + 0.0003004189336013005, + 2.1501911124963996e-05, + 1.6079272415444869e-06, + 1.2328500934386077e-07, + 1.8276021997691976e-08, + 2.6787359311562923e-09, + -6.996754600984002e-10, + 0.0 + ], + "xmax": 512.9878122383327, + "xmin": 512.8022699034628 + }, + { + "coef": [ + 8163712.615573184, + 4433.905802109511, + 0.9346159959688215, + 0.005124711546917365, + 0.00016030843941409727, + 4.452419337736173e-06, + 1.4505455185313628e-07, + 1.1058394716783318e-08, + -2.560076223417077e-09, + 7.798765705629143e-09, + 1.9801213278333806e-09, + -3.7263511552374024e-09, + 5.820766091346741e-11 + ], + "xmax": 513.0496596832893, + "xmin": 512.9878122383327 + }, + { + "coef": [ + 8175644.736288828, + 7500.238249906997, + 3.0114484220210107, + 0.05118234463244518, + 0.00316589597404162, + 0.0002035189720227327, + 1.4562898093560719e-05, + 1.104741579195477e-06, + 8.234545747377733e-08, + 1.4977751573540167e-08, + 1.4368088040576426e-09, + -1.203978160403773e-09, + 1.4551915228366852e-09 + ], + "xmax": 513.1540272466536, + "xmin": 513.0496596832893 + }, + { + "coef": [ + 8185653.473566525, + 2505.827793184667, + 0.39858396852018363, + 0.0039030282050179963, + 0.00010332244077746818, + 3.027146663022546e-06, + 1.00118127214404e-07, + 4.306416464356527e-09, + -2.6766019587794393e-09, + 2.3188020041380816e-10, + 2.096426236124888e-09, + 1.8616947059908956e-09, + 1.7462298274040222e-10 + ], + "xmax": 513.1888164344418, + "xmin": 513.1540272466536 + }, + { + "coef": [ + 8191505.378404804, + 3346.4973110004007, + 0.8383059772516871, + 0.01612343037563472, + 0.000710255661354373, + 3.5255603185882054e-05, + 1.9012571582298635e-06, + 1.084205424685123e-07, + 3.687412450825928e-09, + 4.4616600770595094e-09, + 1.9411826234219058e-09, + -3.920243094479797e-09, + 1.1641532182693481e-10 + ], + "xmax": 513.2352020181593, + "xmin": 513.1888164344418 + }, + { + "coef": [ + 8198205.878536694, + 3354.2480846299236, + 1.1355563541495202, + 0.03728513947287972, + 0.002321174330353482, + 0.0001631083811673092, + 1.2269787765784344e-05, + 9.590673300193942e-07, + 7.35365745855176e-08, + 1.0398872451702405e-08, + 2.52322827108736e-09, + -3.803796811183643e-09, + 1.7462298274040222e-10 + ], + "xmax": 513.2815876018767, + "xmin": 513.2352020181593 + }, + { + "coef": [ + 8202681.52206445, + 1120.3905143177826, + 0.17324814549733797, + 0.002917184842816488, + 8.177582726727333e-05, + 2.5539184649745007e-06, + 8.696311066951549e-08, + 5.004993573763015e-09, + -2.560271815397384e-09, + 5.812113443394921e-10, + 1.9799257358530738e-09, + -1.863510414026139e-09, + 1.7462298274040222e-10 + ], + "xmax": 513.2970494631159, + "xmin": 513.2815876018767 + }, + { + "coef": [ + 8205695.825331205, + 1894.3978100443871, + 0.6878952936588333, + 0.028212347920750013, + 0.0017319181554496979, + 0.00011470929323576929, + 7.662418532440647e-06, + 4.951523139381558e-07, + 2.4642098019108158e-08, + 5.276639690414089e-09, + 1.9411102628558697e-09, + 2.4826719665676533e-09, + 2.9103830456733704e-10 + ], + "xmax": 513.3231413539569, + "xmin": 513.2970494631159 + }, + { + "coef": [ + 8208223.737714377, + 632.9061438202617, + 0.11161493614865385, + 0.002134879468102826, + 5.441787736408548e-05, + 1.3790550649897587e-06, + 3.3295619414614346e-08, + 3.6080376045239934e-09, + -3.0259609953893193e-09, + 4.1901142136586675e-09, + 2.0963131649958125e-09, + -1.2814059122072688e-09, + -5.820766091346741e-11 + ], + "xmax": 513.3318386509039, + "xmin": 513.3231413539569 + }, + { + "coef": [ + 8209701.995307763, + 845.4972972007615, + 0.2677080749619996, + 0.008350754078266987, + 0.0003048120618110219, + 8.880897214480292e-06, + 2.3128675452817494e-08, + -2.1731691590894277e-08, + -5.6259090384354056e-09, + 4.112509854685253e-09, + 1.9410868803153578e-09, + -1.9485705291133535e-10, + 5.820766091346741e-11 + ], + "xmax": 513.3434350468333, + "xmin": 513.3318386509039 + }, + { + "coef": [ + 8211395.515103629, + 848.1341774185413, + 0.40186053502921426, + 0.014172958907778902, + 0.0003508137314435418, + -1.5620375875788495e-05, + -2.9343637782756846e-06, + -1.9476365711049633e-07, + -4.073712569908338e-09, + 5.470696431831556e-09, + 2.096299486919207e-09, + -3.5006965951518474e-10, + 1.1641532182693481e-10 + ], + "xmax": 513.3550314427627, + "xmin": 513.3434350468333 + }, + { + "coef": [ + 8212527.527242295, + 283.5192962719585, + 0.05828407104208694, + 0.0005807308471985076, + -3.0874499343250522e-06, + -3.2957259193913844e-07, + -1.8618293021449878e-09, + 2.909567198587401e-09, + -2.909567198587401e-09, + 4.3065510605106185e-09, + 1.979876318143861e-09, + 2.909567198587401e-09, + 1.1641532182693481e-10 + ], + "xmax": 513.3588969080724, + "xmin": 513.3550314427627 + }, + { + "coef": [ + 8213290.496971571, + 479.57875262212394, + 0.18923698144580534, + 0.001958280917375169, + -0.00010201986797787936, + -4.153815911330861e-06, + 1.8405343703238412e-07, + 1.711223908455924e-08, + -3.258815787153997e-09, + 8.031843982058325e-09, + 2.0962890168850043e-09, + -3.1440269133274176e-09, + -5.820766091346741e-11 + ], + "xmax": 513.3654198807827, + "xmin": 513.3588969080724 + }, + { + "coef": [ + 8213930.450586798, + 160.2060126469385, + 0.022265730504134447, + 2.4761926194874805e-05, + -1.6339270381613185e-06, + 5.036576075960636e-10, + 3.45446333451972e-09, + 4.578193871538782e-09, + -2.5991334004808903e-09, + 4.345363227884912e-09, + 1.9410641507695675e-09, + 6.673669664423608e-09, + -5.820766091346741e-11 + ], + "xmax": 513.3675942050195, + "xmin": 513.3654198807827 + }, + { + "coef": [ + 8214304.525392037, + 213.88632881338629, + 0.03981860436114188, + -1.1237571823258802e-05, + -4.712142174284057e-06, + 4.260720048387442e-08, + 4.657420177861118e-09, + 3.3752370281973843e-09, + -2.909575740889645e-09, + 4.190144280985928e-09, + 1.9798677758416172e-09, + -1.1722262661066023e-10, + 5.820766091346741e-11 + ], + "xmax": 513.3704933040018, + "xmin": 513.3675942050195 + }, + { + "coef": [ + 8214732.615319333, + 214.20313673648747, + 0.03926684618231969, + -7.772892017977202e-05, + -3.5243178425554114e-06, + 6.550221575535088e-08, + 3.532070088021461e-09, + 3.1036032561138235e-09, + -2.754357290633019e-09, + 4.3841717962101065e-09, + 2.135086226098243e-09, + -3.9610433213416247e-11, + 2.3283064365386963e-10 + ], + "xmax": 513.3733924029841, + "xmin": 513.3704933040018 + }, + { + "coef": [ + 8215018.323663305, + 71.47030540955328, + 0.0042797615371606475, + -4.096151512039414e-06, + -3.2867122518309894e-08, + -1.5918127424628127e-09, + 6.015594971886335e-09, + 3.4140460960953843e-09, + -3.996122705230059e-09, + -7.841355871266012e-11, + 5.440748460203994e-10, + -4.276595241934646e-10, + 1.4551915228366852e-09 + ], + "xmax": 513.3743587693116, + "xmin": 513.3733924029841 + }, + { + "coef": [ + 8215250.708961356, + 160.93199348205155, + 0.02122225053688686, + -5.4838020225869705e-05, + -5.973262136110742e-07, + 1.45511125454386e-08, + 3.027601050428558e-09, + 4.772225511976074e-09, + -2.9095803627451177e-09, + 3.840902937360596e-09, + 2.212693797640014e-09, + 6.285624695726227e-09, + 5.820766091346741e-11 + ], + "xmax": 513.3765330935483, + "xmin": 513.3743587693116 + }, + { + "coef": [ + 8215465.341186819, + 53.681374313114965, + 0.002306930217140921, + -2.2312944695435926e-06, + -5.975185326440598e-09, + 1.90064906249788e-09, + 5.899177499906753e-09, + 5.160278073652055e-09, + -4.228955499036576e-09, + 4.228955499036576e-09, + 3.1124205221388153e-10, + -3.221625097887252e-09, + 1.4551915228366852e-09 + ], + "xmax": 513.3772578682939, + "xmin": 513.3765330935483 + }, + { + "coef": [ + 8215590.624485714, + 71.603669914649, + 0.004044548958409337, + -5.484326611964256e-06, + -1.3037715347260437e-08, + -1.3977845592794791e-09, + 6.054397432356872e-09, + 3.491658957451783e-09, + -4.1901508884133916e-09, + -8.006973562613728e-13, + 5.828773064909354e-10, + -6.992926283178702e-10, + 1.5133991837501526e-09 + ], + "xmax": 513.3782242346214, + "xmin": 513.3772578682939 + }, + { + "coef": [ + 8215702.522129057, + 40.29119861870924, + 0.0012632354636295056, + -9.965159548734512e-07, + -1.8618451143416697e-09, + 2.3203060876458234e-10, + 6.1708120917168325e-09, + 2.5603370453032786e-09, + -4.422982194534236e-09, + 3.4844593059151715e-10, + 6.992919658508961e-10, + -4.664613221970265e-10, + 1.3969838619232178e-09 + ], + "xmax": 513.3787678156806, + "xmin": 513.3782242346214 + }, + { + "coef": [ + 8215756.24708947, + 13.43263905417715, + 0.00013946446980532632, + -3.663282093032965e-08, + 6.604864858067904e-10, + -2.0574703477300084e-09, + 3.2216235659993565e-09, + -1.3589784167683993e-09, + -2.715557847174319e-09, + 4.228957030924472e-09, + 1.9410550259030736e-09, + -4.0365308187879e-09, + -5.820766091346741e-11 + ], + "xmax": 513.378949009367, + "xmin": 513.3787678156806 + }, + { + "coef": [ + 8215787.591538446, + 17.91191759321293, + 0.0002470050247930896, + -8.859285944814135e-08, + 4.664608251516898e-10, + -3.5004550332475503e-10, + 3.1440132271711907e-09, + 7.216950415426008e-09, + -2.67675286417555e-09, + 4.190152047925703e-09, + 1.9798600089018425e-09, + 2.2110915768678108e-09, + -1.1641532182693481e-10 + ], + "xmax": 513.3791906009488, + "xmin": 513.378949009367 + }, + { + "coef": [ + 8215818.938797092, + 13.435232598333751, + 0.00013841223051614993, + -4.074616201155261e-08, + 8.157066249139675e-10, + 1.8618457771055333e-09, + 3.3768437051065334e-09, + 5.005059466432773e-09, + -2.7931683517210118e-09, + 8.148273155760014e-09, + 1.9798598431833156e-09, + -3.609674348760403e-09, + 5.820766091346741e-11 + ], + "xmax": 513.3793717946352, + "xmin": 513.3791906009488 + }, + { + "coef": [ + 8215836.852809411, + 4.478656707020298, + 1.534443273350517e-05, + -8.933167151643863e-10, + 4.2765542785664704e-10, + 3.763296157913006e-09, + 2.988792508049213e-09, + -5.440707496835819e-10, + -2.599142939643658e-09, + 4.112542123393811e-09, + 2.0574699334337345e-09, + 3.181219548778332e-09, + 0.0 + ], + "xmax": 513.3794321925307, + "xmin": 513.3793717946352 + }, + { + "coef": [ + 8215845.810245546, + 4.478779404151696, + 1.5327513706691556e-05, + -1.0873422101067127e-09, + 9.70926888279778e-10, + 3.8021013066245495e-09, + 3.299233324818474e-09, + -6.216809227989735e-10, + -2.6379480883552013e-09, + 4.151347272105354e-09, + 1.9022494628952564e-09, + 3.3364400193168102e-09, + 0.0 + ], + "xmax": 513.3794925904261, + "xmin": 513.3794321925307 + }, + { + "coef": [ + 8215851.781992271, + 1.492953707734876, + 1.6990436161217896e-06, + 4.578203493574482e-09, + -1.0857438387664373e-09, + -2.6395464596954768e-09, + 6.015590792676586e-09, + 2.59914302251659e-09, + -4.228957528093677e-09, + 3.8005942324023955e-11, + 7.769013104645197e-10, + 1.5514051260741766e-09, + 1.57160684466362e-09 + ], + "xmax": 513.3795127230579, + "xmin": 513.3794925904261 + } + ], + "jexpansions_rhoL": [ + { + "coef": [ + 28066.10173769676, + -165.09525697997532, + -0.6936239350159761, + 0.10002281190992131, + -0.0065127194837352855, + 0.00021613433847074147, + 1.9417954624678816e-06, + -6.222459794536107e-07, + 3.1191748117736036e-08, + -2.62107047193179e-10, + -5.621609842734591e-11, + 1.6464163209702132e-12, + 6.821210263296962e-13 + ], + "xmax": 186.30930598801703, + "xmin": 175.61 + }, + { + "coef": [ + 27844.664991485097, + -55.75601840335778, + -0.012716018046808351, + 0.0016628896150680176, + -4.5853612368993834e-05, + 7.621892793778349e-07, + -6.101777437051723e-09, + -3.776654726642885e-11, + -6.798693120444635e-12, + 1.498414543640099e-11, + 6.843727406149289e-12, + -2.751001248171112e-12, + -2.2737367544323206e-13 + ], + "xmax": 189.87574131735602, + "xmin": 186.30930598801703 + }, + { + "coef": [ + 27714.515820149943, + -74.37514787019398, + 0.009285232176982383, + 0.0022804820185301725, + -9.542963226341118e-05, + 2.4483140878222097e-06, + -3.65201303869165e-08, + 1.166954537532704e-10, + 1.084110126323813e-12, + 1.3922552452929503e-11, + 7.450573038734311e-12, + -2.4483521789832052e-12, + -2.2737367544323206e-13 + ], + "xmax": 194.63098842314136, + "xmin": 189.87574131735602 + }, + { + "coef": [ + 27541.20398214033, + -98.89574842206733, + 0.05486773181976431, + 0.002289634892325847, + -0.00015711748344430672, + 6.400682172096292e-06, + -1.6271994710988755e-07, + 2.2414259714579007e-09, + 3.6616998685726386e-12, + 1.2254457412453606e-11, + 6.8449313247778874e-12, + -2.7522051667997103e-12, + 2.2737367544323206e-13 + ], + "xmax": 200.9713178975218, + "xmin": 194.63098842314136 + }, + { + "coef": [ + 27311.192250026194, + -131.0467030302001, + 0.12757184419102524, + 0.0011035500052817761, + -0.0001685229095888454, + 1.2085465313774955e-05, + -5.203024916946447e-07, + 1.4029082721288e-08, + -2.156771907607667e-10, + 1.1495630212744318e-11, + 6.694263822714246e-12, + -2.6015376647360696e-12, + 2.2737367544323206e-13 + ], + "xmax": 209.42509053002905, + "xmin": 200.9713178975218 + }, + { + "coef": [ + 27006.93393376892, + -173.10807465577548, + 0.23150529140414475, + -0.0006096936099569763, + -4.522172500544853e-05, + 1.1624373175054057e-05, + -1.0659095747354114e-06, + 4.984255754548595e-08, + -1.5906803849759023e-09, + 4.635838136547002e-11, + 6.392311337359817e-12, + -1.390090477608712e-12, + -6.821210263296962e-13 + ], + "xmax": 220.69678737337208, + "xmin": 209.42509053002905 + }, + { + "coef": [ + 26605.67238608751, + -227.98641249194895, + 0.39681644723201637, + -0.001060477846625431, + 3.471747219329239e-05, + -1.0833456929972208e-05, + -8.569665046571302e-07, + 9.707686011558544e-08, + -5.287471581205313e-09, + 2.2385982908453513e-10, + 3.306149024916811e-13, + -3.059099007810466e-12, + 0.0 + ], + "xmax": 235.72571649782944, + "xmin": 220.69678737337208 + }, + { + "coef": [ + 26078.238498451952, + -299.17544022196074, + 0.660494061458575, + -0.008154185755028418, + -0.0008822798743502358, + -4.600603524447022e-05, + 2.0844856400503626e-06, + 3.893847027259512e-08, + -8.291682054303643e-09, + 5.596128471810933e-10, + -2.164673108240628e-11, + -1.5453838128033915e-12, + 6.821210263296962e-13 + ], + "xmax": 255.7642886637726, + "xmin": 235.72571649782944 + }, + { + "coef": [ + 25386.84010026347, + -392.10400065839923, + 0.7024825039216335, + -0.072008885687897, + -0.004108444739781094, + 1.863277335765428e-05, + 6.3348211693157814e-06, + -3.6410304850893067e-07, + 3.1500672269051032e-09, + 5.847727659254266e-10, + -4.316867101964779e-11, + 8.771673872066281e-13, + -2.2737367544323206e-13 + ], + "xmax": 282.4823848850301, + "xmin": 255.7642886637726 + }, + { + "coef": [ + 24473.542698674173, + -522.9276866241836, + -1.423539150682361, + -0.32452246772970544, + -0.008604692142059441, + 0.0002659009138616357, + -9.640256054929512e-06, + -9.494223130486826e-07, + 5.2342213954954856e-08, + -1.8702602274170914e-09, + -1.6941278761734874e-11, + 1.4798688315950924e-12, + -6.821210263296962e-13 + ], + "xmax": 318.1065131800401, + "xmin": 282.4823848850301 + }, + { + "coef": [ + 23542.44703800814, + -409.25384080094784, + -3.01933511050299, + -0.17915178326723272, + -0.0021119259773711837, + -2.1381890636066424e-05, + -3.875405920380394e-06, + -3.8903297708935594e-08, + -2.822815169510195e-10, + -9.220292650398374e-11, + 6.25567718644202e-12, + -1.4808300021341466e-12, + -2.2737367544323206e-13 + ], + "xmax": 344.8246094012976, + "xmin": 318.1065131800401 + }, + { + "coef": [ + 22987.546387821898, + -142.94317177698218, + -0.5045231303194677, + -0.0075710053991306465, + -3.4745856920361404e-05, + -3.69293092282024e-07, + -6.57082726189331e-09, + -2.482831536396589e-11, + -8.822988601632455e-12, + 1.155147270695124e-11, + 6.183673977620861e-12, + -1.6362004687562195e-12, + -5.684341886080801e-13 + ], + "xmax": 353.7306414750501, + "xmin": 344.8246094012976 + }, + { + "coef": [ + 22647.590000444703, + -197.57597840148966, + -1.0944630031497427, + -0.019712942671473815, + -0.00014435905339528992, + -2.404696003525057e-06, + -4.4292421860266046e-08, + -3.6354062310928754e-10, + -1.344493077559122e-11, + 1.11711940211589e-11, + 5.6544579616402715e-12, + -2.2438528299917906e-12, + -5.684341886080801e-13 + ], + "xmax": 365.6053509067201, + "xmin": 353.7306414750501 + }, + { + "coef": [ + 22096.35182012735, + -356.5463813561529, + -4.110577148350889, + -0.1138958094812877, + -0.0018758938637021684, + -5.6496550892751646e-05, + -1.4858525120698763e-06, + -2.8204008975982654e-08, + -7.39977786914459e-10, + -7.85423161833124e-12, + 3.9888791357962965e-12, + -3.0793844340233683e-12, + 0.0 + ], + "xmax": 385.64392307266326, + "xmin": 365.6053509067201 + }, + { + "coef": [ + 21609.236129434714, + -126.9050166074618, + -0.5671983095597721, + -0.005118378105534655, + -3.4549936900068924e-05, + -3.503177044395926e-07, + -2.995066600189481e-09, + -1.6725104731570904e-11, + -8.05862589174139e-12, + 1.2151352049719566e-11, + 5.12904728396607e-12, + -1.945815827760821e-12, + 4.547473508864641e-13 + ], + "xmax": 392.32344712797766, + "xmin": 385.64392307266326 + }, + { + "coef": [ + 21306.13960110587, + -176.75013698656286, + -1.1447020869461775, + -0.01386185113617473, + -0.00013848149094513112, + -1.8830917034133183e-06, + -2.2180780368709635e-08, + -2.630477606163582e-10, + -1.2074386669952587e-11, + 1.0937518292736427e-11, + 5.433386339176281e-12, + -1.7954075320845682e-12, + 0.0 + ], + "xmax": 401.22947920173016, + "xmin": 392.32344712797766 + }, + { + "coef": [ + 20879.350300756872, + -251.25801660024146, + -2.4170679816036444, + -0.040103030801652374, + -0.0006036534669184498, + -1.1235065790851508e-05, + -1.9795086166632744e-07, + -4.348954343726767e-09, + -1.4531372508415719e-10, + 5.478914686569479e-12, + 4.9802743838191956e-12, + -2.2517902785004104e-12, + -1.1368683772161603e-13 + ], + "xmax": 413.10418863340016, + "xmin": 401.22947920173016 + }, + { + "coef": [ + 20261.832748571265, + -369.14035015656214, + -5.464624023396501, + -0.12896016236570942, + -0.0030188129428748416, + -8.466485449246278e-05, + -2.7849091762382785e-06, + -1.255311676013037e-07, + -6.390811517184098e-09, + -2.8397009912742277e-10, + -5.249216036368434e-12, + -1.5719942269285282e-12, + 0.0 + ], + "xmax": 428.9371345422935, + "xmin": 413.10418863340016 + }, + { + "coef": [ + 19597.68774192477, + -292.9089309805904, + -3.565678860220048, + -0.06601534521108277, + -0.0013356118811478316, + -3.520675134694314e-05, + -1.1947456803842816e-06, + -4.500792072788849e-08, + -1.536380130042887e-09, + -3.4999340945289805e-11, + 4.3038947604534805e-12, + -2.712279032350856e-12, + -4.547473508864641e-13 + ], + "xmax": 440.2088313856365, + "xmin": 428.9371345422935 + }, + { + "coef": [ + 19197.18988240459, + -104.41417351643348, + -0.4613638778430548, + -0.0030765460760314115, + -2.41644475089173e-05, + -2.5721577472962004e-07, + -3.301024514594726e-09, + -3.727578826280702e-11, + -6.834704773180002e-12, + 1.0472683580271715e-11, + 4.761352674424833e-12, + -1.12337386733312e-12, + 4.547473508864641e-13 + ], + "xmax": 443.9660636667508, + "xmin": 440.2088313856365 + }, + { + "coef": [ + 18947.951711870526, + -145.25420016197486, + -0.9030862374464479, + -0.008516078676760018, + -9.937920580988113e-05, + -1.5728263887390161e-06, + -2.8642804962616232e-08, + -5.135488131448593e-10, + -1.554972961154162e-11, + 9.410640374574356e-12, + 4.686527502906031e-12, + -1.7306697221440143e-12, + 0.0 + ], + "xmax": 448.9757067082366, + "xmin": 443.9660636667508 + }, + { + "coef": [ + 18597.856547590123, + -205.74883082529936, + -1.8446985138859984, + -0.02558505239607048, + -0.00046757106680370044, + -1.1321511226653916e-05, + -3.0100728717797626e-07, + -8.05833924687745e-09, + -2.2351950746683507e-10, + 5.240779041332296e-12, + 4.991036353613147e-12, + -2.717299599180826e-12, + -2.2737367544323206e-13 + ], + "xmax": 455.655230763551, + "xmin": 448.9757067082366 + }, + { + "coef": [ + 18094.257961788633, + -299.9479802615051, + -4.055633183470727, + -0.08929872551856514, + -0.0027557113542208793, + -0.00010622527246577715, + -4.269326391480944e-06, + -1.655091544269009e-07, + -5.7939452783546855e-09, + -1.5733330269647e-10, + 1.8097086932992692e-12, + -9.002139915263409e-13, + -3.410605131648481e-13 + ], + "xmax": 464.5612628373035, + "xmin": 455.655230763551 + }, + { + "coef": [ + 17544.006785289224, + -249.04724400509568, + -2.9513825378063214, + -0.061281714379137625, + -0.0018038620906649934, + -6.053511461642716e-05, + -1.958159910359831e-06, + -5.626216945034317e-08, + -1.3490903124366444e-09, + -1.5833861249077703e-11, + 3.555682775143173e-12, + -1.0545723452676203e-12, + 3.410605131648481e-13 + ], + "xmax": 471.2407868926179, + "xmin": 464.5612628373035 + }, + { + "coef": [ + 17203.650572282702, + -88.68273769430576, + -0.3914230648664106, + -0.00315843463559945, + -3.514040289515049e-05, + -4.1706804226907437e-07, + -4.535275321705254e-09, + -3.7664038809029265e-11, + -5.7643332006280564e-12, + 9.174938332276537e-12, + 4.012734843430922e-12, + -1.5116244135553693e-12, + 1.1368683772161603e-13 + ], + "xmax": 473.467294911056, + "xmin": 471.2407868926179 + }, + { + "coef": [ + 16991.924259303556, + -123.42354732708463, + -0.783730432871838, + -0.009286103566861388, + -0.00014712748134453784, + -2.387475657346033e-06, + -3.49473372952048e-08, + -4.629294236223902e-10, + -1.3645800106624227e-11, + 7.506710869656961e-12, + 4.544093928834338e-12, + -1.8156098235155532e-12, + -5.684341886080801e-13 + ], + "xmax": 476.4359722689735, + "xmin": 473.467294911056 + }, + { + "coef": [ + 16646.235942429437, + -224.15738769919258, + -2.7478908344802093, + -0.06392301185875494, + -0.0018687899001504716, + -5.3853332396289625e-05, + -1.53492450025951e-06, + -5.8421314139562004e-08, + -3.5105002039901016e-09, + -2.1388059977003932e-10, + -6.44449173445254e-12, + -1.513586906060582e-12, + -1.1368683772161603e-13 + ], + "xmax": 481.4456153104593, + "xmin": 476.4359722689735 + }, + { + "coef": [ + 16339.59129852109, + -80.04159474936455, + -0.3713035795483394, + -0.003261019558749304, + -3.443832929422512e-05, + -3.7638778832900593e-07, + -5.036781821551024e-09, + -8.526496515866454e-11, + -6.821373395844449e-12, + 7.958241773060608e-12, + 4.319936700873922e-12, + -3.4104419991009937e-12, + 3.410605131648481e-13 + ], + "xmax": 483.1154963242879, + "xmin": 481.4456153104593 + }, + { + "coef": [ + 16148.25573029855, + -111.6603150462817, + -0.7502820574046224, + -0.009481792399508141, + -0.00014305915722861613, + -2.378510014115417e-06, + -4.712099571264942e-08, + -6.956882330622807e-10, + 1.72051855396762e-11, + 1.0989150215284575e-11, + 3.7901386885255096e-12, + -2.1985229604228848e-12, + -2.2737367544323206e-13 + ], + "xmax": 485.342004342726, + "xmin": 483.1154963242879 + }, + { + "coef": [ + 15878.241372418106, + -159.17380682928533, + -1.6093205978981266, + -0.030310995875502254, + -0.0006790291430796931, + -1.5466250338344425e-05, + -1.4532080503687255e-07, + 2.17809564635995e-08, + 1.628072917983013e-09, + 2.2887339410294993e-11, + -6.047192168582525e-13, + -1.669017537574068e-12, + -7.958078640513122e-13 + ], + "xmax": 488.3106817006435, + "xmin": 485.342004342726 + }, + { + "coef": [ + 15545.721601252748, + -173.71129707953105, + -2.0482541422775253, + -0.04353407912299498, + -0.0009465017481003176, + -6.6509690017395445e-06, + 1.0086080268505287e-06, + 4.911566667000044e-08, + -1.0413405983455682e-10, + 1.7504689490685407e-11, + 1.410025139592385e-11, + -1.1399518956596219e-12, + -1.1368683772161603e-13 + ], + "xmax": 491.279359058561, + "xmin": 488.3106817006435 + }, + { + "coef": [ + 15308.35152694784, + -61.83449631829778, + -0.27043630095325005, + -0.0019881186216678766, + -1.1161037790021004e-05, + 6.875900742256212e-08, + 2.7495587569834804e-09, + 3.5314019845225905e-11, + -4.618573660389576e-12, + 5.982815713048968e-12, + 3.3395049801235463e-12, + -1.5627352391829733e-13, + -1.1368683772161603e-13 + ], + "xmax": 492.26891817786685, + "xmin": 491.279359058561 + }, + { + "coef": [ + 15059.655272102233, + -189.13235134473834, + -2.5946572213271435, + -0.052019495743788065, + -0.00034717024610552447, + 4.602908248751168e-05, + 2.6729465745304485e-06, + 7.454074046085537e-08, + -2.88456139736285e-10, + -2.8429814870521653e-10, + -2.1064697415044134e-11, + -1.6726701292790726e-12, + -1.1368683772161603e-13 + ], + "xmax": 495.0868423887027, + "xmin": 492.26891817786685 + }, + { + "coef": [ + 14800.225001935483, + -67.98409054322701, + -0.33506816082216784, + -0.0019146244164928352, + 7.0978499095066635e-06, + 3.985694477601958e-07, + 4.515875581460671e-09, + -3.1157207018361673e-11, + -7.268944131544544e-12, + 7.268944131544544e-12, + 4.099739640617059e-12, + -1.8260028861847385e-12, + -7.958078640513122e-13 + ], + "xmax": 496.02615045898125, + "xmin": 495.0868423887027 + }, + { + "coef": [ + 14637.559011524409, + -94.98166758461836, + -0.6407914267363821, + -0.003994808575430461, + 5.564761515876822e-05, + 2.0348953284431793e-06, + 2.5933559933598947e-09, + -1.8159653970194843e-09, + -8.942600319480033e-11, + 4.842995929918011e-12, + 3.3424563860383434e-12, + -3.1150827105951113e-12, + 1.1368683772161603e-13 + ], + "xmax": 497.2785612193527, + "xmin": 496.02615045898125 + }, + { + "coef": [ + 14408.214025678608, + -134.93386297614893, + -1.2216104427366106, + -0.006045582123087451, + 0.0002949034069473503, + 2.64855702028468e-06, + -7.065791493285003e-07, + -4.632262004564765e-08, + -1.0199897867649086e-09, + 7.593428632460906e-11, + 1.2514073422808213e-11, + -1.1453896506466089e-12, + -1.0231815394945443e-12 + ], + "xmax": 498.94844223318125, + "xmin": 497.2785612193527 + }, + { + "coef": [ + 14128.397800605737, + -144.9209560555234, + -1.2683300150952823, + -0.0022760765690940468, + 7.374590648160719e-05, + -2.860092074789335e-05, + -1.5734070280736109e-06, + 2.625899705109478e-08, + 5.846620668840473e-09, + 6.205110743763452e-12, + -3.485419384961069e-11, + -3.799330975738759e-12, + -6.821210263296962e-13 + ], + "xmax": 500.6183232470098, + "xmin": 498.94844223318125 + }, + { + "coef": [ + 13931.772928189881, + -50.57642752321788, + -0.1432107539797663, + -0.00014231533253121853, + -5.399353150203004e-06, + -1.8759390412271498e-07, + -4.807326305842818e-10, + 3.394335833833076e-11, + -4.839527881597056e-12, + 1.0069122416791394e-11, + 4.028045460688994e-12, + -1.9816823816999055e-12, + -1.1368683772161603e-12 + ], + "xmax": 501.1749502516194, + "xmin": 500.6183232470098 + }, + { + "coef": [ + 13763.7445967203, + -118.05427401703682, + -0.7496291842186601, + -0.004188893862279714, + -0.00030000331585500683, + -1.1656625789386434e-05, + -1.010581890441432e-07, + -1.1410607898123436e-08, + -6.597510364559819e-10, + 4.652423378558502e-11, + 4.180095838255728e-12, + -3.147433557207834e-13, + -1.1368683772161603e-13 + ], + "xmax": 502.4273610119909, + "xmin": 501.1749502516194 + }, + { + "coef": [ + 13604.30775652268, + -40.71666754144145, + -0.08852976139745448, + -0.00030433461803471034, + -5.847698945279627e-06, + -6.301685419348264e-08, + -5.174898145933603e-10, + -3.6506495225276e-12, + -4.762176468871986e-12, + 7.035913223304307e-12, + 3.4232758470843684e-12, + -2.059033794424976e-12, + -1.1368683772161603e-13 + ], + "xmax": 502.8448312654481, + "xmin": 502.4273610119909 + }, + { + "coef": [ + 13508.245747879288, + -55.42199329011026, + -0.16648502424761227, + -0.0010162521154425234, + -2.376005574568584e-05, + -3.409140217740606e-07, + -4.198062913510441e-09, + -4.541199128659905e-11, + -4.1554699600255355e-12, + 7.111327740787552e-12, + 3.5752350050443545e-12, + 1.1996121792635187e-12, + 2.2737367544323206e-13 + ], + "xmax": 503.40145827005756, + "xmin": 502.8448312654481 + }, + { + "coef": [ + 13376.904392850613, + -76.07593858919216, + -0.32766223488994767, + -0.003663239906183277, + -0.00010523753673480655, + -2.0333199532399267e-06, + -3.34796990716749e-08, + -4.6537168259609586e-10, + -1.1430914808361742e-11, + 6.656067624053869e-12, + 4.030495121778038e-12, + -3.3483740954483423e-12, + -9.094947017729282e-13 + ], + "xmax": 504.1436276095369, + "xmin": 503.40145827005756 + }, + { + "coef": [ + 13057.04240846579, + -247.51917427302234, + -4.288422377783628, + -0.24179925486200685, + -0.019031885895766192, + -0.0011554121948384062, + -6.529561542355e-05, + -3.8454041705489e-06, + -2.1801101955421426e-07, + -7.756033498335917e-09, + 1.1582325609243308e-10, + 5.061427433201279e-11, + 7.958078640513122e-12 + ], + "xmax": 506.37013562797506, + "xmin": 504.1436276095369 + }, + { + "coef": [ + 12713.668749349456, + -92.08328440092029, + -0.7990992728863588, + -0.020352407740212162, + -0.0005430189936746163, + -1.2276782719288537e-05, + -2.5132762717729997e-07, + -3.683318516056948e-09, + 2.7149814929776383e-11, + 1.1731083571016299e-11, + 4.412447385453177e-12, + -2.59345798190732e-12, + -1.2505552149377763e-12 + ], + "xmax": 507.1123049674544, + "xmin": 506.37013562797506 + }, + { + "coef": [ + 12487.814622646609, + -134.95833318499595, + -2.0848084648623453, + -0.08014136477551723, + -0.0029145005973813197, + -8.493554993869183e-05, + -1.3886653785986703e-06, + 6.975049551256171e-08, + 9.76548939506819e-09, + 7.271236056106398e-10, + 4.435527516824653e-11, + 4.373388940701844e-13, + 1.1368683772161603e-13 + ], + "xmax": 508.1018640867602, + "xmin": 507.1123049674544 + }, + { + "coef": [ + 12153.189330101908, + -203.01440148324554, + -5.807666010261357, + -0.3035277879436646, + -0.011204784360018328, + 0.00011683387020895575, + 7.553254630436745e-05, + 9.052968210033986e-06, + 6.925710633196565e-07, + 2.8235547523626682e-08, + -1.4929926863709442e-09, + -4.610566803881921e-10, + -5.6843418860808015e-11 + ], + "xmax": 509.3542748471316, + "xmin": 508.1018640867602 + }, + { + "coef": [ + 11864.91691905289, + -80.07660305242085, + -0.954713196250299, + -0.013869894359328025, + 6.64675326160396e-05, + 1.3590606062356461e-05, + 5.008618981410773e-07, + 6.641147669076475e-09, + -3.38917819978691e-10, + -1.987783987072919e-11, + 1.9153195107138574e-12, + -3.506935238816482e-12, + -2.8421709430404007e-13 + ], + "xmax": 509.77174510058876, + "xmin": 509.3542748471316 + }, + { + "coef": [ + 11666.055899708303, + -119.78593404221125, + -1.9917919897132847, + -0.02014115661520318, + 0.001740820315283961, + 0.00011163982978960352, + 1.1347559833643227e-06, + -2.6144279981732494e-07, + -1.9411324140071987e-08, + -3.96902030353782e-10, + 3.594632058765111e-11, + 3.1978064554440193e-13, + -1.9326762412674725e-12 + ], + "xmax": 510.32837210519835, + "xmin": 509.77174510058876 + }, + { + "coef": [ + 11444.859688708104, + -100.55008219977918, + -1.1438926414652395, + 0.007032709739231647, + 0.0010474519027104932, + 5.153669857206425e-06, + -2.120959887831434e-06, + -1.0032198704980859e-07, + -7.869936936387241e-10, + 6.428646624241101e-11, + 9.697786097965907e-13, + -4.2666969037234556e-12, + -2.8421709430404007e-13 + ], + "xmax": 510.7458423586555, + "xmin": 510.32837210519835 + }, + { + "coef": [ + 11307.804444106405, + -35.486358000009076, + -0.1163593547670562, + 0.0006563501879245702, + 1.0384658693485382e-05, + -1.7956743610948364e-07, + -5.5892005800149085e-09, + -4.261798703850609e-11, + -3.652555914191632e-12, + -1.235978107837857e-12, + 2.8275938359404813e-12, + -2.7139069982188652e-12, + -1.1368683772161603e-13 + ], + "xmax": 510.88499910980784, + "xmin": 510.7458423586555 + }, + { + "coef": [ + 11223.694363034128, + -48.69840784475808, + -0.1885021674124943, + 0.001890052402828284, + 1.3176976707957947e-05, + -1.5040550209353391e-06, + -3.906599492140188e-08, + -2.0087039345568908e-10, + 1.2036556000084846e-11, + 6.153338035373718e-12, + 5.101658899066269e-12, + -1.6910537674177882e-12, + -2.5011104298755527e-12 + ], + "xmax": 511.0705414446777, + "xmin": 510.88499910980784 + }, + { + "coef": [ + 11089.963671721267, + -85.30632832368813, + -0.45267628151135814, + 0.007646405194023074, + -0.00035837051883861145, + -3.629121771139457e-05, + -5.217600711797358e-07, + 5.242078729802681e-08, + 3.2107298726687814e-09, + -5.580643905621487e-11, + -1.7294197598784237e-11, + 2.9696560458606176e-12, + 1.7053025658242404e-13 + ], + "xmax": 511.3836441347706, + "xmin": 511.0705414446777 + }, + { + "coef": [ + 10975.055966772721, + -29.201715624763576, + -0.04570463632635222, + 4.892856938807834e-05, + -1.0584253775629789e-05, + -1.4390721149813287e-07, + 1.0861889341114687e-09, + 2.362197572694695e-11, + -3.954152801107379e-12, + 5.659455366931619e-12, + 2.639683786746351e-12, + -9.119833536878465e-12, + 1.7053025658242404e-13 + ], + "xmax": 511.48801169813487, + "xmin": 511.3836441347706 + }, + { + "coef": [ + 10906.383852008064, + -39.50717097473931, + -0.08281745570651675, + -0.0004214304112665499, + -4.2698344158458524e-05, + -4.458595285481399e-07, + 8.066636831613532e-09, + -5.853598250289826e-11, + -1.501940150298731e-11, + 5.697080809814797e-12, + 2.602058343863173e-12, + 8.084504401968734e-12, + 3.979039320256561e-13 + ], + "xmax": 511.62716844928724, + "xmin": 511.48801169813487 + }, + { + "coef": [ + 10813.185863508714, + -53.77325643872138, + -0.16864883413068607, + -0.0030879580795678784, + -0.00016136885658877087, + -1.3049017931995246e-06, + 8.107642576129179e-10, + -2.731048633568734e-09, + -4.018172273337807e-11, + 8.008347658160732e-12, + 2.4508414122279417e-12, + -2.5645282499495577e-12, + -5.684341886080802e-14 + ], + "xmax": 511.81271078415705, + "xmin": 511.62716844928724 + }, + { + "coef": [ + 10685.461992561175, + -74.18202927596984, + -0.41795837683652104, + -0.01527359550560681, + -0.0006401210954555224, + -1.119592080789729e-05, + -5.529925720635779e-07, + -2.4661960144238514e-08, + -2.933239171956999e-10, + -3.3639428091667786e-11, + 1.2386793410072146e-12, + -4.194537121769231e-12, + -5.6843418860808015e-12 + ], + "xmax": 512.0601005639835, + "xmin": 511.81271078415705 + }, + { + "coef": [ + 10476.851620825058, + -136.15142625951535, + -2.3166017652059847, + -0.17022091994862212, + -0.011262895461538667, + -0.0007305192768741991, + -5.8507495861979706e-05, + -4.387970409604452e-06, + -3.527407100617778e-07, + -2.9154523596946667e-08, + -2.350145498792123e-09, + -1.932564347158706e-10, + -2.2794210963184014e-11 + ], + "xmax": 512.4775708174407, + "xmin": 512.0601005639835 + }, + { + "coef": [ + 10287.828870249128, + -50.83436840661241, + -0.475131348189024, + -0.013579390477076004, + -0.0003829751624100477, + -1.1844249257365411e-05, + -3.9443645550770973e-07, + -1.3475328842580241e-08, + -4.793894272349626e-10, + -1.1737711722418656e-11, + 1.733270002916446e-12, + -1.2874580099634817e-11, + -2.2737367544323206e-13 + ], + "xmax": 512.616727568593, + "xmin": 512.4775708174407 + }, + { + "coef": [ + 10162.532682478251, + -75.22241862377935, + -1.305350701694967, + -0.05824995690859208, + -0.002739114533757916, + -0.00014202739789464836, + -7.815006531077923e-06, + -4.4554196659595723e-07, + -2.613153543785198e-08, + -1.5804270646559803e-09, + -9.327056028165098e-11, + -7.797038452865668e-12, + -7.389644451905042e-13 + ], + "xmax": 512.8022699034628, + "xmin": 512.616727568593 + }, + { + "coef": [ + 9998.702627454908, + -89.5198460324245, + -2.412004829912736, + -0.14201681789365803, + -0.009338621438179234, + -0.000674663997254993, + -5.153059912690857e-05, + -4.085352724087204e-06, + -3.3280837333201166e-07, + -2.7691224841180113e-08, + -2.336765919392607e-09, + -2.0368015633462465e-10, + -1.7280399333685637e-11 + ], + "xmax": 512.9878122383327, + "xmin": 512.8022699034628 + }, + { + "coef": [ + 9871.815532778422, + -35.242775331280725, + -0.45082254767094165, + -0.011532620418006092, + -0.0003381805840266567, + -1.0864514660727157e-05, + -3.6872806994112426e-07, + -1.3010162194706657e-08, + -4.745746879673853e-10, + -4.2700423665967684e-11, + 2.0005357616291455e-12, + 1.9486276567756285e-11, + 3.410605131648481e-13 + ], + "xmax": 513.0496596832893, + "xmin": 512.9878122383327 + }, + { + "coef": [ + 9768.029753237723, + -70.03957889100816, + -2.067766064434113, + -0.11548297687234023, + -0.00749060003367961, + -0.0005313351956146752, + -3.9786393062994684e-05, + -3.0894322662524768e-06, + -2.4617354486421647e-07, + -2.002645939770188e-08, + -1.6348622275862277e-09, + -1.3467340155072574e-10, + -2.3590018827235326e-11 + ], + "xmax": 513.1540272466536, + "xmin": 513.0496596832893 + }, + { + "coef": [ + 9668.241768825768, + -27.92556388766547, + -0.37746528595892653, + -0.009249845146875806, + -0.0002650731678455929, + -8.291312944812748e-06, + -2.7340093551967266e-07, + -9.312877729174458e-09, + -3.281071701317465e-10, + 3.650043137580136e-11, + 2.3804671249913185e-12, + -2.98926818536224e-11, + -5.684341886080801e-13 + ], + "xmax": 513.1888164344418, + "xmin": 513.1540272466536 + }, + { + "coef": [ + 9597.899665697454, + -42.97772355468555, + -0.9863768526568104, + -0.040012607269539, + -0.001902283486976889, + -9.851932758705101e-05, + -5.369036450578777e-06, + -3.0240345734951115e-07, + -1.7423537760395293e-08, + -1.0141935812963957e-09, + -5.571324850173272e-11, + 3.4453809847790525e-11, + 1.7621459846850485e-12 + ], + "xmax": 513.2352020181593, + "xmin": 513.1888164344418 + }, + { + "coef": [ + 9502.027355775068, + -53.52316208874359, + -1.748897511856026, + -0.09791917004261881, + -0.006417759261321644, + -0.00045593240750780727, + -3.391095216580678e-05, + -2.5929046248527064e-06, + -2.0160720419906477e-07, + -1.5819441377714506e-08, + -1.2419971065192982e-09, + -5.1190672564084135e-11, + -4.206412995699793e-12 + ], + "xmax": 513.2815876018767, + "xmin": 513.2352020181593 + }, + { + "coef": [ + 9425.245281136757, + -21.71747229081116, + -0.3199482731400149, + -0.007880599289548583, + -0.00022591270048728633, + -6.965203012397843e-06, + -2.2300155073767105e-07, + -7.265341038738426e-09, + -2.399229271294998e-10, + 7.223484149011616e-11, + 4.731147647417896e-12, + 1.9029401436399855e-11, + 4.547473508864641e-13 + ], + "xmax": 513.2970494631159, + "xmin": 513.2815876018767 + }, + { + "coef": [ + 9360.497763042662, + -44.06897050186974, + -1.4392858216296398, + -0.07671796855943483, + -0.004706350659760416, + -0.000306750856636584, + -2.0526114028895924e-05, + -1.3879157015006538e-06, + -9.442958146532615e-08, + -6.5147807371002726e-09, + -4.716165014061971e-10, + -1.19327681070763e-10, + -8.242295734817162e-12 + ], + "xmax": 513.3231413539569, + "xmin": 513.2970494631159 + }, + { + "coef": [ + 9297.318694451256, + -17.838913297502696, + -0.2555083252516449, + -0.005799272959842973, + -0.0001489717284409484, + -4.017524014933402e-06, + -1.1145301024171584e-07, + -3.2388191253592746e-09, + -1.0493814570889582e-10, + 8.010023558955393e-13, + 2.1548554248664775e-12, + 8.076959970078965e-12, + 1.1368683772161603e-13 + ], + "xmax": 513.3318386509039, + "xmin": 513.3231413539569 + }, + { + "coef": [ + 9252.23760263547, + -27.602555729361743, + -0.6441604322671663, + -0.02322390835073396, + -0.000940237383214356, + -4.0679716822648326e-05, + -1.932664726030645e-06, + -1.068862376421642e-07, + -6.955100491915502e-09, + -4.905915709862964e-10, + -3.40731850989616e-11, + -2.1064931196022175e-11, + -1.0231815394945443e-12 + ], + "xmax": 513.3434350468333, + "xmin": 513.3318386509039 + }, + { + "coef": [ + 9190.76024018629, + -34.21261363286756, + -1.0527556502610622, + -0.04913306458043106, + -0.002720665283320082, + -0.0001825874705474093, + -1.4740012076722924e-05, + -1.2860774205223418e-06, + -1.0812679821858239e-07, + -8.229292765899456e-09, + -5.665441817842546e-10, + -6.259877816716849e-11, + -4.888534022029489e-12 + ], + "xmax": 513.3550314427627, + "xmin": 513.3434350468333 + }, + { + "coef": [ + 9141.968156137955, + -13.648040163944449, + -0.17690017127832855, + -0.003616108679272444, + -9.686005736351367e-05, + -3.1693096268703296e-06, + -1.0952018168032457e-07, + -3.6448334561492507e-09, + -1.2172516440561e-10, + 1.103429582975392e-12, + -2.9224189865212484e-12, + -1.8386505539009388e-10, + -4.774847184307873e-12 + ], + "xmax": 513.3588969080724, + "xmin": 513.3550314427627 + }, + { + "coef": [ + 9101.875960371932, + -26.97389655825933, + -0.7430131735095193, + -0.03466799895639897, + -0.0021521286841681055, + -0.0001498382206699764, + -1.0636019249518345e-05, + -7.776873525519613e-07, + -6.02306846256261e-08, + -5.0617126409769736e-09, + -3.948008223097097e-10, + 9.091590507983005e-11, + 4.092726157978177e-12 + ], + "xmax": 513.3654198807827, + "xmin": 513.3588969080724 + }, + { + "coef": [ + 9063.665097421668, + -10.580544556749294, + -0.12618924077522736, + -0.00268767117555597, + -7.332706840117684e-05, + -2.178700731001265e-06, + -6.82254838648425e-08, + -2.3882532149962626e-09, + -8.318495023394802e-11, + 1.2167402366628638e-12, + -9.515879390340834e-12, + -4.81156512216154e-10, + -1.1596057447604835e-11 + ], + "xmax": 513.3675942050195, + "xmin": 513.3654198807827 + }, + { + "coef": [ + 9037.28119546261, + -15.978009436154059, + -0.3143777598335989, + -0.011253470018152517, + -0.0005036979773310235, + -2.468869869270531e-05, + -1.2908100986463795e-06, + -7.086013037007435e-08, + -4.01777261902677e-09, + -2.2888551722647563e-10, + -1.4176941822339454e-11, + -6.745020766178085e-11, + -2.3305801732931286e-12 + ], + "xmax": 513.3704933040018, + "xmin": 513.3675942050195 + }, + { + "coef": [ + 9002.251213935559, + -19.223594186720142, + -0.5223257611185886, + -0.026040519102968982, + -0.0015991793388480343, + -0.00010868454720589422, + -7.90202610692152e-06, + -6.014481982222346e-07, + -4.7298351591715367e-08, + -3.808656811335349e-09, + -3.1578797436715914e-10, + -1.0712706195725248e-10, + -6.821210263296962e-12 + ], + "xmax": 513.3733924029841, + "xmin": 513.3704933040018 + }, + { + "coef": [ + 8975.028816912583, + -7.537438053388235, + -0.09066798175009567, + -0.002002838820692565, + -5.436212401250842e-05, + -1.6404816621125882e-06, + -5.326361347571037e-08, + -1.872001708843528e-09, + 9.018790123264005e-11, + 4.277693314270426e-10, + 1.593094985673826e-10, + -2.3794788003216282e-11, + -1.4841816664556973e-10 + ], + "xmax": 513.3743587693116, + "xmin": 513.3733924029841 + }, + { + "coef": [ + 8947.626797556168, + -20.497276370268533, + -0.7751446122318875, + -0.053944520160026564, + -0.004622816020518206, + -0.00044178743223351934, + -4.5182382454135116e-05, + -4.8382194072984185e-06, + -5.355376551450549e-07, + -6.078959909802371e-08, + -7.108386802321084e-09, + -1.7847660784523305e-09, + -1.694502316240687e-10 + ], + "xmax": 513.3765330935483, + "xmin": 513.3743587693116 + }, + { + "coef": [ + 8917.783503808529, + -8.672348731680886, + -0.16616851273515332, + -0.005877708829716174, + -0.0002568221253071911, + -1.2533393900956539e-05, + -6.551800155661892e-07, + -3.623081702109104e-08, + -1.8174390802285261e-09, + -9.591039862627166e-11, + 2.3563152218613774e-10, + 3.484914500275254e-10, + -2.1327650756575167e-10 + ], + "xmax": 513.3772578682939, + "xmin": 513.3765330935483 + }, + { + "coef": [ + 8895.04161598388, + -14.406793966538691, + -0.5448224490769117, + -0.03829279091363607, + -0.0033358391253495755, + -0.00032491702123754306, + -3.389057152342491e-05, + -3.7024927114727025e-06, + -4.1787412736073096e-07, + -4.7596507120149146e-08, + -5.383264560689747e-09, + -7.517319501195404e-10, + -3.6840219763689674e-10 + ], + "xmax": 513.3782242346214, + "xmin": 513.3772578682939 + }, + { + "coef": [ + 8869.479303772614, + -10.942938685196847, + -0.3994794190231264, + -0.02737555322596245, + -0.002332492895110135, + -0.0002223803409119686, + -2.271091841839697e-05, + -2.4294887421096126e-06, + -2.682822955644889e-07, + -2.934336544095173e-08, + -3.075118456393411e-09, + -5.709321161765371e-10, + -4.391722541186027e-10 + ], + "xmax": 513.3787678156806, + "xmin": 513.3782242346214 + }, + { + "coef": [ + 8853.59717168996, + -4.59180684840665, + -0.0848935693546037, + -0.0029680445857865794, + -0.00012919921270627553, + -6.293804021829908e-06, + -3.284128934452944e-07, + -1.660346692491502e-08, + -9.677433396625126e-10, + -4.9753857945950946e-11, + 3.997678990189197e-11, + 1.1116708762180785e-09, + 4.1382008930668235e-11 + ], + "xmax": 513.378949009367, + "xmin": 513.3787678156806 + }, + { + "coef": [ + 8841.606192270765, + -7.570051186489723, + -0.2766237619173762, + -0.01927486298355233, + -0.0016747946763598592, + -0.00016294058100810806, + -1.6984308940671255e-05, + -1.8565993559532933e-06, + -2.095822947084536e-07, + -2.4277328513634365e-08, + -2.959991441385846e-09, + -1.6212470582821151e-09, + -1.34718902700115e-10 + ], + "xmax": 513.3791906009488, + "xmin": 513.378949009367 + }, + { + "coef": [ + 8826.083406379528, + -8.040672689374027, + -0.4240614473547672, + -0.04318171460969407, + -0.005493464805191795, + -0.0007829316048522765, + -0.00011957954060253304, + -1.913774330060061e-05, + -3.1675153528316364e-06, + -5.400719723207807e-07, + -9.32776280000176e-08, + -1.5290118792669497e-08, + -2.753210992523236e-09 + ], + "xmax": 513.3793717946352, + "xmin": 513.3791906009488 + }, + { + "coef": [ + 8813.805789328684, + -3.8933253061035553, + -0.13893275382039202, + -0.009654128832642968, + -0.0008382731202450624, + -8.153437298777577e-05, + -8.4970403909348e-06, + -9.24938752618671e-07, + -1.0456400242687066e-07, + -1.2135309120692755e-08, + -1.6953768091681643e-09, + -3.873231876112032e-09, + -2.837623469531536e-10 + ], + "xmax": 513.3794321925307, + "xmin": 513.3793717946352 + }, + { + "coef": [ + 8804.177208334175, + -6.0206304472153125, + -0.5042743568699687, + -0.08346618746073108, + -0.017312791677381763, + -0.004027694110805161, + -0.0010047738714272863, + -0.0002627280295702724, + -7.106995069062466e-05, + -1.9733271374381028e-05, + -5.6250332088973405e-06, + -1.7502121228892325e-06, + -4.6918239604565315e-07 + ], + "xmax": 513.3794925904261, + "xmin": 513.3794321925307 + }, + { + "coef": [ + 8793.047686961843, + -5.270453465789044, + -1.0808218455847538, + -0.4767743610775569, + -0.27585336682546135, + -0.18504300896370016, + -0.136737333031877, + -0.10843118688285078, + -0.09089682209867359, + -0.07981362455916216, + -0.07298504447556123, + -0.06926003176715487, + -0.03403748687060215 + ], + "xmax": 513.3795127230579, + "xmin": 513.3794925904261 + } + ], + "jexpansions_rhoV": [ + { + "coef": [ + 0.000333336456193178, + 0.00024479298277921415, + 4.351048693903344e-05, + 4.742817875337366e-06, + 3.4759751972778496e-07, + 1.7742990737429603e-08, + 6.276069773184713e-10, + 1.442460246811006e-11, + 1.6396282725769687e-13, + -1.0360415473980897e-15, + -5.582288512827723e-17, + 7.625873768269753e-20, + 1.3976043629695956e-19 + ], + "xmax": 186.30930598801703, + "xmin": 175.61 + }, + { + "coef": [ + 0.0008125246839746598, + 0.0001963283208960458, + 1.0909466624554856e-05, + 3.650874974478758e-07, + 8.106471772500724e-09, + 1.234485154035394e-10, + 1.2707020397667233e-12, + 8.024271269287011e-15, + 1.8394656319085047e-17, + 2.3329225693152613e-19, + 3.223613564672949e-19, + 8.296034517985536e-19, + 1.0842021724855044e-19 + ], + "xmax": 189.87574131735602, + "xmin": 186.30930598801703 + }, + { + "coef": [ + 0.0014268295486386774, + 0.0004361071697835463, + 3.0673785465443625e-05, + 1.2958482307731532e-06, + 3.615171113498963e-08, + 6.862142014514781e-10, + 8.669312261318527e-12, + 6.442953648816552e-14, + 1.2128588146175331e-16, + -1.6848293094460985e-18, + 2.889190123710114e-19, + -6.412847184288003e-19, + -8.131516293641283e-20 + ], + "xmax": 194.63098842314136, + "xmin": 189.87574131735602 + }, + { + "coef": [ + 0.002908886366709344, + 0.0011059137839957785, + 9.68792315176453e-05, + 5.079347204585522e-06, + 1.7471404961622193e-07, + 4.042632301542271e-09, + 6.083551755009661e-11, + 5.019848014750324e-13, + 1.3242652949589754e-16, + -3.685410799130032e-17, + 9.9654344041718e-20, + 4.424467422010342e-19, + 1.0842021724855044e-18 + ], + "xmax": 200.9713178975218, + "xmin": 194.63098842314136 + }, + { + "coef": [ + 0.0070559323646254574, + 0.003266849443896114, + 0.00034918965522307314, + 2.223019443631373e-05, + 9.199221947464331e-07, + 2.5185130325219814e-08, + 4.3244200324857233e-10, + 3.5604083890835097e-12, + -1.581576402568557e-14, + -5.603508481872325e-16, + 3.613032615925943e-18, + 2.404289441368607e-18, + 1.0299920638612292e-18 + ], + "xmax": 209.42509053002905, + "xmin": 200.9713178975218 + }, + { + "coef": [ + 0.02075262588608752, + 0.011403272734451174, + 0.0014497058657752411, + 0.00010900842269147873, + 5.257172130283333e-06, + 1.6354653626732017e-07, + 3.0004944391228202e-09, + 1.8935566705805665e-11, + -3.876160955061529e-13, + -6.60523542043896e-15, + 6.055742644746115e-17, + -1.3286211727093155e-17, + 2.3852447794681098e-18 + ], + "xmax": 220.69678737337208, + "xmin": 209.42509053002905 + }, + { + "coef": [ + 0.07452863347136865, + 0.04715856149855952, + 0.006912086779565803, + 0.000593062095764181, + 3.199013282696726e-05, + 1.0688476471260148e-06, + 1.871283318966614e-08, + 2.1878198152212253e-12, + -5.755177162244184e-12, + -2.461137788920613e-14, + 2.4112542053929418e-15, + 4.294583224524615e-17, + 1.1492543028346347e-17 + ], + "xmax": 235.72571649782944, + "xmin": 220.69678737337208 + }, + { + "coef": [ + 0.32297801281729455, + 0.22752194043986887, + 0.0370539558135141, + 0.003476991292946275, + 0.0001988698646162862, + 6.5726058704745865e-06, + 8.592143542541034e-08, + -1.5007397257579574e-09, + -4.274013032020972e-11, + 1.2391436452181434e-12, + 4.0128182140953005e-14, + -7.5863285365937e-16, + -4.5102810375396984e-17 + ], + "xmax": 255.7642886637726, + "xmin": 235.72571649782944 + }, + { + "coef": [ + 1.6299518108809457, + 1.2328338391760698, + 0.2138271998649247, + 0.02085670030661847, + 0.0011820741763316162, + 3.42714270170264e-05, + 1.397541568184426e-07, + -1.3135801927247816e-08, + 3.3770674640407787e-10, + 2.667710307859666e-11, + -1.5917633524425625e-13, + -2.0166316596129973e-14, + 7.28583859910259e-16 + ], + "xmax": 282.4823848850301, + "xmin": 255.7642886637726 + }, + { + "coef": [ + 9.037768443831174, + 7.07438487208636, + 1.2492045508004783, + 0.1200723691286388, + 0.006320031943705029, + 0.00015034915265158498, + 7.031509346671318e-07, + 1.283077079911908e-07, + 1.2002298011484382e-08, + 2.4343991220405583e-10, + 5.53975801025516e-12, + 8.822715645378269e-13, + 2.3647750424515834e-14 + ], + "xmax": 318.1065131800401, + "xmin": 282.4823848850301 + }, + { + "coef": [ + 31.81603314139221, + 15.938957390129548, + 1.7042094219369068, + 0.0963071138842849, + 0.0029768715232233755, + 5.502124276421146e-05, + 1.634608590180979e-06, + 8.646219370785497e-08, + 2.995263289766452e-09, + 8.617648024761957e-11, + 2.6189352172955192e-12, + 1.93987784237027e-14, + 2.4424906541753444e-15 + ], + "xmax": 344.8246094012976, + "xmin": 318.1065131800401 + }, + { + "coef": [ + 58.277490173401766, + 9.003065933597448, + 0.2889717229942352, + 0.0049034802016892625, + 4.859513219327076e-05, + 3.988341973050875e-07, + 5.449086878205793e-09, + 8.108055689136215e-11, + 8.698895375289956e-13, + 3.24997368863316e-14, + 4.803756741073659e-15, + -3.766635826997829e-14, + 6.661338147750939e-15 + ], + "xmax": 353.7306414750501, + "xmin": 344.8246094012976 + }, + { + "coef": [ + 83.01494104041689, + 16.07484287993237, + 0.6482097054067486, + 0.014014872671615403, + 0.00018977454687705853, + 2.506141651553599e-06, + 4.895543790917759e-08, + 8.993339571868519e-10, + 1.1599593625990548e-11, + 1.1903244353290383e-13, + 2.3076103619116216e-14, + -9.753427323614336e-15, + 2.220446049250313e-15 + ], + "xmax": 365.6053509067201, + "xmin": 353.7306414750501 + }, + { + "coef": [ + 138.58045381488967, + 41.341474332084296, + 2.60250117356066, + 0.09152774432048051, + 0.002310782573290631, + 6.49247570661156e-05, + 2.107913684917102e-06, + 4.868945470763349e-08, + -2.0835113149672027e-10, + -1.1354426772783853e-10, + -9.182449949485384e-12, + -5.093529662823829e-13, + -1.4210854715202004e-14 + ], + "xmax": 385.64392307266326, + "xmin": 365.6053509067201 + }, + { + "coef": [ + 201.26648547809165, + 19.0255304183351, + 0.3818288705719413, + 0.0044907464593526136, + 4.217097581275985e-05, + 4.3009131451933163e-07, + 3.6981058649690716e-09, + -6.202193303685023e-12, + -1.3064670564598352e-12, + -1.5142432053951084e-14, + 4.534049832375534e-14, + -3.468235728735384e-14, + -5.329070518200751e-15 + ], + "xmax": 392.32344712797766, + "xmin": 385.64392307266326 + }, + { + "coef": [ + 250.44194830729924, + 30.552493127245583, + 0.8015112952381229, + 0.012754780185633125, + 0.00016860223100102916, + 2.192731530999037e-06, + 1.294583064508369e-08, + -7.001346323144321e-10, + -3.768939178517708e-11, + -1.0671617368575849e-12, + 4.900346896235089e-15, + -1.3279803933305312e-13, + 2.6645352591003757e-14 + ], + "xmax": 401.22947920173016, + "xmin": 392.32344712797766 + }, + { + "coef": [ + 332.0369178861295, + 51.976735500072564, + 1.7868724802117943, + 0.03886214704451175, + 0.0006938899283567196, + 8.053688031259317e-06, + -2.6279155219414927e-07, + -2.5595013988758417e-08, + -1.1622739521233083e-09, + -3.1782457180503665e-11, + 5.6724028815193705e-14, + 2.854109947601832e-14, + 1.7763568394002505e-15 + ], + "xmax": 413.10418863340016, + "xmin": 401.22947920173016 + }, + { + "coef": [ + 477.14393382665855, + 95.49860946592051, + 4.316668958516028, + 0.12402195541087895, + 0.002046893231731527, + -8.181909128108677e-05, + -1.093179501470254e-05, + -5.203763138827973e-07, + 5.7971363920379674e-09, + 3.364125579219805e-09, + 3.3012821254410783e-10, + 1.7767721738752423e-11, + 2.0250467969162855e-13 + ], + "xmax": 428.9371345422935, + "xmin": 413.10418863340016 + }, + { + "coef": [ + 666.4192296227693, + 92.16127226140625, + 2.875458658871977, + 0.04788317541878969, + -0.0004027621110370374, + -5.7830989888128864e-05, + 1.8839202168142912e-07, + 2.8471535559314394e-07, + 2.1179054653166182e-08, + 5.366021751255031e-10, + -3.430530436197305e-11, + -3.80110255684112e-12, + -2.1316282072803006e-14 + ], + "xmax": 440.2088313856365, + "xmin": 428.9371345422935 + }, + { + "coef": [ + 797.2648506437775, + 36.119357452956585, + 0.3593944468860914, + 0.001492583924112711, + -1.1415866290764407e-05, + 3.0920312798607334e-08, + 1.34888142437923e-08, + 3.376510622182047e-10, + 1.4909855600911397e-12, + 3.066875613819138e-13, + 1.9779778100775733e-13, + -2.7595748194136833e-13, + 2.4868995751603507e-14 + ], + "xmax": 443.9660636667508, + "xmin": 440.2088313856365 + }, + { + "coef": [ + 885.8343053205552, + 52.759735719843796, + 0.6736661365624513, + 0.003134128531166947, + -1.559460619098352e-05, + 2.393644786092391e-06, + 1.383172956830275e-07, + 2.353198236942373e-09, + -3.1073522204789376e-11, + -1.0145877421367501e-12, + 2.47201587515842e-13, + -7.667133093341797e-14, + -3.552713678800501e-14 + ], + "xmax": 448.9757067082366, + "xmin": 443.9660636667508 + }, + { + "coef": [ + 1017.0178231375181, + 79.01748972716018, + 1.2790285958517655, + 0.008800061851407375, + 0.00029521894748106445, + 2.997738829870048e-05, + 1.0660011567757661e-06, + 6.534539036127608e-09, + -1.8225855672288184e-10, + 3.7492579739119036e-11, + 2.5109762841746024e-12, + -1.2355269202066584e-13, + 1.4210854715202004e-14 + ], + "xmax": 455.655230763551, + "xmin": 448.9757067082366 + }, + { + "coef": [ + 1217.1485937479326, + 122.41338194346761, + 2.6396925809468756, + 0.05554490977436459, + 0.004375316049352441, + 0.0002762503006961557, + 9.618393652167826e-06, + 3.9821095314401564e-07, + 3.08729441579916e-08, + 1.337691778288999e-09, + 3.2728943468924156e-12, + -1.738122037650599e-12, + 2.1316282072803006e-14 + ], + "xmax": 464.5612628373035, + "xmin": 455.655230763551 + }, + { + "coef": [ + 1448.142333274198, + 107.88590898258484, + 2.069833029605958, + 0.06800316694480704, + 0.003774837425636639, + 0.00016000011662389968, + 6.022006927202016e-06, + 2.196412950695627e-07, + 2.9234555597544343e-09, + -4.677061781298064e-10, + -5.94028449664663e-11, + -5.455495953715652e-12, + -3.481659405224491e-13 + ], + "xmax": 471.2407868926179, + "xmin": 464.5612628373035 + }, + { + "coef": [ + 1598.0126635705606, + 40.14825332578927, + 0.3100168539887537, + 0.004488432892076928, + 8.203245887480814e-05, + 1.1759237448513242e-06, + 1.2477625348829663e-08, + -3.6448371311765004e-11, + -8.941098648590195e-12, + 4.43007528899396e-13, + 3.5280033515191623e-13, + -4.0161531417472157e-14, + -2.842170943040401e-14 + ], + "xmax": 473.467294911056, + "xmin": 471.2407868926179 + }, + { + "coef": [ + 1695.6558367605992, + 57.850603564493, + 0.6848658220552692, + 0.01494474047261747, + 0.0003571235637991773, + 6.011343361933891e-06, + 8.420795438374589e-09, + -6.090670012432346e-09, + -3.935724638577452e-10, + -1.638227296640221e-11, + -3.0127046924494103e-13, + -2.955854287935431e-13, + 1.9895196601282805e-13 + ], + "xmax": 476.4359722689735, + "xmin": 473.467294911056 + }, + { + "coef": [ + 1864.3598387524955, + 112.88784158603552, + 2.846357697497033, + 0.11535642318228513, + 0.003576531770412273, + -5.847859946227586e-05, + -2.1465077432069263e-05, + -2.175273087757563e-06, + -1.4163186635628903e-07, + -4.4570275146213755e-09, + 3.4775992175470325e-10, + 7.771306841844472e-11, + 8.199663170671556e-12 + ], + "xmax": 481.4456153104593, + "xmin": 476.4359722689735 + }, + { + "coef": [ + 2023.2547578486485, + 43.46816719528789, + 0.43145219426944015, + 0.005144366996659896, + -1.3129747486259673e-05, + -3.4922558998867162e-06, + -1.1842274685042586e-07, + -1.6067932345168422e-09, + 5.132992080969176e-11, + 5.172437537951409e-12, + 6.824346047118162e-13, + 6.533857385171721e-13, + 4.263256414560601e-14 + ], + "xmax": 483.1154963242879, + "xmin": 481.4456153104593 + }, + { + "coef": [ + 2130.049945985338, + 63.76400969203732, + 0.8831020763207106, + 0.009131848868264658, + -0.0004300995417737317, + -2.8963436335427605e-05, + -4.841532189379453e-07, + 4.073277191078003e-08, + 3.5706476888205717e-09, + 1.13942721737004e-10, + -1.733812905768976e-12, + -3.693935920809206e-13, + 7.105427357601002e-14 + ], + "xmax": 485.342004342726, + "xmin": 483.1154963242879 + }, + { + "coef": [ + 2289.497552433216, + 96.4389304540202, + 1.6384288619134293, + -0.011706927357910296, + -0.003044229660172198, + 7.896584213859202e-09, + 1.7647412154326184e-05, + 1.0518566954604926e-06, + -3.400033270995718e-08, + -7.621185966081069e-09, + -2.1095607994593284e-10, + 3.482674660571922e-11, + 3.581135388230905e-12 + ], + "xmax": 488.3106817006435, + "xmin": 485.342004342726 + }, + { + "coef": [ + 2494.5663124143994, + 108.33586860575276, + 1.295590896770182, + -0.0325968439033662, + 0.0019891721331820066, + 0.0004467495626951347, + 3.3345422881268323e-06, + -1.959613672721608e-06, + 4.8936957284613075e-09, + 1.350467154566927e-08, + -3.312233617093604e-11, + -9.520168190733805e-11, + 5.684341886080801e-13 + ], + "xmax": 491.279359058561, + "xmin": 488.3106817006435 + }, + { + "coef": [ + 2642.3133602374387, + 38.27637845779295, + 0.13117387059563848, + 0.0006322409671996976, + 9.01738353673753e-05, + 1.1717711674119965e-06, + -2.3289907096248584e-08, + 1.5574406656750727e-10, + 1.7884156342830823e-11, + 1.9257751301607705e-12, + 7.458655562972061e-13, + -1.1437694883228621e-12, + -2.842170943040401e-14 + ], + "xmax": 492.26891817786685, + "xmin": 491.279359058561 + }, + { + "coef": [ + 2795.1338473918413, + 115.83330481657521, + 1.504500130512617, + 0.09118637866480894, + 0.00788851724730166, + 0.0001064420084665485, + -1.913961931724336e-06, + 2.846431576031337e-07, + -8.249596617272072e-08, + -8.256143654287376e-09, + -2.5482249977539474e-10, + -3.397048974694039e-11, + -2.1600499167107046e-12 + ], + "xmax": 495.0868423887027, + "xmin": 492.26891817786685 + }, + { + "coef": [ + 2954.304904531826, + 42.011664651888466, + 0.284207006704478, + 0.0067251298320478, + 0.00011016967978679158, + -6.726570307900936e-08, + -3.9331253960064095e-08, + -2.1333484582088947e-09, + -7.544469017495261e-11, + -1.0021349106124213e-13, + 3.275871665044742e-13, + 7.031676552118191e-14, + 3.979039320256561e-13 + ], + "xmax": 496.02615045898125, + "xmin": 495.0868423887027 + }, + { + "coef": [ + 3056.15597065241, + 60.225966735850456, + 0.6977788521779429, + 0.020448193925607098, + 0.00026631275946003836, + -1.1400326537955273e-05, + -9.516917360314145e-07, + -4.6225859637281415e-08, + -1.3155884743062553e-09, + 3.4434150327934266e-12, + 3.718855743668384e-12, + 8.001960557658539e-13, + 4.263256414560601e-14 + ], + "xmax": 497.2785612193527, + "xmin": 496.02615045898125 + }, + { + "coef": [ + 3206.287785939508, + 90.90838182228248, + 1.7693043068429164, + 0.04689706955678732, + -0.001645917946343635, + -0.0002673785346064314, + -1.4573103210314967e-05, + -4.033103548767098e-08, + 7.204244409780654e-08, + 7.1009890426096326e-09, + 2.854721778392043e-10, + -1.3646948846820367e-11, + -2.6147972675971687e-12 + ], + "xmax": 498.94844223318125, + "xmin": 497.2785612193527 + }, + { + "coef": [ + 3403.3960811536535, + 106.36461586554623, + 1.9532377109439418, + -0.033774528861901264, + -0.008227854973139026, + -0.00014896085673767967, + 4.667281519146281e-05, + 3.927721134865625e-06, + -1.0783457668940308e-07, + -3.8423483196037085e-08, + -1.6005933014653051e-09, + 2.2731314520704438e-10, + 3.0325963962241076e-11 + ], + "xmax": 500.6183232470098, + "xmin": 498.94844223318125 + }, + { + "coef": [ + 3550.074307644924, + 38.5587990350492, + 0.1522182971606515, + -0.0041596803771643005, + -4.930708517003461e-05, + 3.5075443985939456e-06, + 6.283399789515904e-08, + -2.8417946899754286e-09, + -7.597800014984668e-11, + 2.536302981682718e-12, + 2.490245424968748e-13, + -7.849428591445077e-14, + 6.252776074688882e-13 + ], + "xmax": 501.1749502516194, + "xmin": 500.6183232470098 + }, + { + "coef": [ + 3678.257244955617, + 89.8769950361132, + 0.35639531552580905, + -0.042843483428008235, + 0.0018124808923047687, + 0.00017252298491856602, + -9.678246648570001e-06, + -5.007725789375236e-07, + 5.965025449148195e-08, + 1.0710792474292535e-09, + -3.412665926753394e-10, + 1.854538657454761e-12, + 1.9326762412674725e-12 + ], + "xmax": 502.4273610119909, + "xmin": 501.1749502516194 + }, + { + "coef": [ + 3798.8067011703965, + 30.369258814385223, + 0.011712548720862135, + -0.0005746944198502503, + 3.7124499084104785e-05, + 2.565929359958949e-09, + -1.180071118808582e-08, + 2.212520187883404e-10, + 1.0057489574189456e-12, + 1.7795785667606471e-12, + 9.489055385581376e-13, + 4.153365141012549e-13, + 0.0 + ], + "xmax": 502.8448312654481, + "xmin": 502.4273610119909 + }, + { + "coef": [ + 3869.7812232998635, + 40.6091633831496, + 0.015197695248693608, + 0.00023143532033855952, + 0.00010786892564482551, + -9.35272985034693e-07, + -2.4688781931751015e-08, + 1.5664707549024186e-09, + -2.118241317135262e-11, + 1.4009034077914325e-12, + 9.865201843625042e-13, + -1.7823280484138164e-12, + 0.0 + ], + "xmax": 503.40145827005756, + "xmin": 502.8448312654481 + }, + { + "coef": [ + 3964.772580345432, + 54.41852309448992, + 0.05636454496838506, + 0.004765377122130202, + 0.0002618475710211084, + -4.398181811312176e-06, + 6.46706827052612e-08, + 4.89895445694223e-09, + -2.2312850828988413e-10, + 6.214021917040735e-12, + 4.935015085346102e-13, + 6.433668686815501e-13, + 7.389644451905042e-13 + ], + "xmax": 504.1436276095369, + "xmin": 503.40145827005756 + }, + { + "coef": [ + 4188.138219876083, + 170.94238371152008, + 2.3500372338825932, + 0.30921573044393313, + 0.01606686388068622, + 0.000334328336047089, + 0.0001020748394091458, + 1.6541797924913305e-06, + 3.0300187402071183e-07, + 4.5743414626766616e-08, + -3.9532667534208405e-10, + 3.2739878980341847e-10, + 8.128608897095546e-12 + ], + "xmax": 506.37013562797506, + "xmin": 504.1436276095369 + }, + { + "coef": [ + 4424.5892156218315, + 63.43176221283462, + 0.6185359332439273, + 0.020027671844295297, + 0.000411164373681745, + 1.1375448102339797e-05, + 3.7328934723969713e-07, + 1.1140079718679852e-08, + 3.8458239483580744e-10, + 1.3946814797317546e-11, + 6.051004310493054e-13, + 6.45454783888471e-13, + 9.094947017729282e-13 + ], + "xmax": 507.1123049674544, + "xmin": 506.37013562797506 + }, + { + "coef": [ + 4581.405410243279, + 94.39961958417062, + 1.7258325648586663, + 0.07426031527198226, + 0.0027233431516322853, + 0.0001279657474639533, + 6.378573931520951e-06, + 3.1494992632709775e-07, + 1.53567783274061e-08, + 7.151299212987608e-10, + 3.32705314226376e-11, + 1.4607975013160968e-12, + 5.684341886080802e-14 + ], + "xmax": 508.1018640867602, + "xmin": 507.1123049674544 + }, + { + "coef": [ + 4820.036091202982, + 147.35839385572726, + 5.254933176668674, + 0.3472486876226932, + 0.024377270346138062, + 0.00191653171411383, + 0.00014831562647748354, + 1.0846572008290312e-05, + 7.200299186252979e-07, + 3.896631790201157e-08, + 9.071803789285408e-10, + -1.8509842913969654e-10, + -4.015987542516086e-11 + ], + "xmax": 509.3542748471316, + "xmin": 508.1018640867602 + }, + { + "coef": [ + 5033.244943241651, + 61.23659017414702, + 1.0436030928000224, + 0.0297193108348251, + 0.0009106416758827792, + 2.7549721782598472e-05, + 7.176075160161688e-07, + 1.189653581674999e-08, + -2.395422241263686e-10, + -3.5750453416524616e-11, + -1.3682990995830208e-12, + 1.0840820052789807e-12, + 1.9895196601282805e-13 + ], + "xmax": 509.77174510058876, + "xmin": 509.3542748471316 + }, + { + "coef": [ + 5190.8286071138855, + 98.0270037718881, + 2.8778341201377535, + 0.12914152192015618, + 0.00569228525458728, + 0.00019452992435246174, + 3.5711079734270517e-07, + -7.754074764149327e-07, + -9.564169060225778e-08, + -8.151379536378037e-09, + -5.503247096721764e-10, + -2.737495621021537e-11, + 1.1368683772161603e-12 + ], + "xmax": 510.32837210519835, + "xmin": 509.77174510058876 + }, + { + "coef": [ + 5382.184081329121, + 92.8705873335516, + 2.6473555050306024, + 0.09444827252330946, + 0.0019792793803637787, + -0.00010907023057802766, + -1.810013155613812e-05, + -1.4099407073907348e-06, + -6.799392417557852e-08, + -5.798162881835581e-10, + 2.878684889144481e-10, + 3.8526422184311516e-11, + 2.7284841053187847e-12 + ], + "xmax": 510.7458423586555, + "xmin": 510.32837210519835 + }, + { + "coef": [ + 5513.697793450717, + 36.27909887954182, + 0.3833639112539925, + 0.003709547043500784, + -2.8488536075833378e-05, + -2.6965356153642856e-06, + -7.309255233381589e-08, + -7.43467630985488e-10, + 2.559209419234362e-11, + 1.1640345161485632e-11, + 1.6610148519434439e-12, + 8.400955779321089e-13, + -5.684341886080802e-14 + ], + "xmax": 510.88499910980784, + "xmin": 510.7458423586555 + }, + { + "coef": [ + 5603.055382824931, + 53.44595523433382, + 0.760578173169973, + 0.00572217525847151, + -0.0003688878625089855, + -2.01900562737465e-05, + -3.4685699489631965e-07, + 1.542706428512626e-08, + 1.298941184409918e-09, + 3.903920873578108e-11, + -1.9772996385342584e-12, + 4.425273292924418e-13, + 2.7284841053187847e-12 + ], + "xmax": 511.0705414446777, + "xmin": 510.88499910980784 + }, + { + "coef": [ + 5759.282212495654, + 104.18037920636606, + 2.132287665252716, + -0.0400578688175532, + -0.007070665962191567, + -0.00011153925619318427, + 3.167593656634592e-05, + 2.3247001646338345e-06, + -6.614014828999874e-08, + -1.8610262843428663e-08, + -6.055412156297652e-10, + 8.860716450957706e-11, + 9.492850949754938e-12 + ], + "xmax": 511.3836441347706, + "xmin": 511.0705414446777 + }, + { + "coef": [ + 5903.503941814349, + 38.13130830865592, + 0.1710155112949407, + -0.004080997696605815, + -5.452584835423633e-05, + 2.331482419170896e-06, + 4.994083853151258e-08, + -1.3677392110201007e-09, + -4.7207171263132453e-11, + 3.8356426723359396e-12, + 1.5076387005800134e-12, + 9.861045071581589e-12, + 1.1368683772161603e-13 + ], + "xmax": 511.48801169813487, + "xmin": 511.3836441347706 + }, + { + "coef": [ + 5994.175554743113, + 52.57879819026644, + 0.1946762432706644, + -0.010680417051987459, + 3.156595661928662e-05, + 1.2238745141732187e-05, + -6.457290075701936e-08, + -1.4797280781232563e-08, + 1.7345862800678916e-10, + 2.3958565696797082e-11, + 1.1093820208192515e-12, + -1.2250692117537622e-11, + -5.684341886080802e-14 + ], + "xmax": 511.62716844928724, + "xmin": 511.48801169813487 + }, + { + "coef": [ + 6118.44154623511, + 71.63182133819274, + 0.10951835057321135, + -0.018377317880692082, + 0.0007973432139754037, + 2.362577109193473e-05, + -1.7986849054580663e-06, + 3.2089526542396334e-09, + 4.1675041244897015e-09, + -1.1371570843117756e-10, + -5.5417843387976565e-12, + 2.2448660448707912e-12, + 5.684341886080802e-14 + ], + "xmax": 511.81271078415705, + "xmin": 511.62716844928724 + }, + { + "coef": [ + 6285.97549655732, + 95.76577716814691, + -0.0510140936593475, + -0.0038321748477014948, + 0.002750782468041066, + -4.214429551986103e-05, + -2.240383565990495e-06, + 3.643550885361119e-07, + -9.464457875591506e-09, + -5.373690466431076e-10, + 7.523205130473839e-11, + 9.381299687443516e-13, + 7.048583938740194e-12 + ], + "xmax": 512.0601005639835, + "xmin": 511.81271078415705 + }, + { + "coef": [ + 6544.174680748365, + 163.17939805541317, + 0.8911302255316295, + 0.21395736170400062, + 0.016902882468617347, + 0.0003262407140701958, + 0.00010668212478401472, + 4.9277108010988885e-06, + 3.150560595480637e-07, + 6.034447244530031e-08, + 1.7816327039180392e-09, + 3.033838998963988e-10, + 3.9392489270539954e-11 + ], + "xmax": 512.4775708174407, + "xmin": 512.0601005639835 + }, + { + "coef": [ + 6765.7928367599025, + 57.67599585230379, + 0.37627607192110424, + 0.01704946222434269, + 0.0004536904539304902, + 1.4221313670036042e-05, + 5.322684797152675e-07, + 1.7790505311867782e-08, + 6.716686999340531e-10, + 2.8528533593380023e-11, + 2.7353467800643852e-12, + 1.2612376312353778e-11, + 2.8421709430404007e-13 + ], + "xmax": 512.616727568593, + "xmin": 512.4775708174407 + }, + { + "coef": [ + 6906.17810451608, + 83.48715940323753, + 1.2403538760724346, + 0.07186653678566142, + 0.0033691659431711973, + 0.00018519088105347202, + 1.078348093290094e-05, + 6.387316046808581e-07, + 3.9266454792025974e-08, + 2.474349798491679e-09, + 1.573868079260104e-10, + 1.007390403793e-11, + 7.958078640513122e-13 + ], + "xmax": 512.8022699034628, + "xmin": 512.616727568593 + }, + { + "coef": [ + 7086.724011843925, + 98.1950571019139, + 2.620365457664326, + 0.17984126110661136, + 0.01246322899340258, + 0.0009642392898230276, + 7.827549337080991e-05, + 6.570320118854671e-06, + 5.654095558463253e-07, + 4.957018417490119e-08, + 4.405484204379056e-09, + 3.9926261824960245e-10, + 3.575451046344824e-11 + ], + "xmax": 512.9878122383327, + "xmin": 512.8022699034628 + }, + { + "coef": [ + 7226.042871304923, + 38.823730658955505, + 0.5285729725443057, + 0.015397781251669183, + 0.0004891897430874826, + 1.702795683428003e-05, + 6.221301541166218e-07, + 2.352252209557217e-08, + 9.074150887504527e-10, + 7.290651292304235e-11, + 3.3773551881620007e-12, + -2.3727299140331268e-11, + -6.252776074688882e-13 + ], + "xmax": 513.0496596832893, + "xmin": 512.9878122383327 + }, + { + "coef": [ + 7341.358189267623, + 78.38690561872409, + 2.594461624454998, + 0.16571621175557566, + 0.011910396883767783, + 0.0009300945474663305, + 7.613789160105887e-05, + 6.430044432169893e-06, + 5.54912280415806e-07, + 4.8688657704701686e-08, + 4.304301649312912e-09, + 3.8368879097564654e-10, + 4.8544279707130045e-11 + ], + "xmax": 513.1540272466536, + "xmin": 513.0496596832893 + }, + { + "coef": [ + 7454.096246614894, + 32.07394588050135, + 0.5099753401873421, + 0.014536150570162214, + 0.0004724659555712731, + 1.6586287525648198e-05, + 6.086673956031399e-07, + 2.295848488412335e-08, + 8.795986230205407e-10, + -1.1258556502837477e-11, + 2.732043673716275e-12, + 3.2283502344541465e-11, + 1.0231815394945443e-12 + ], + "xmax": 513.1888164344418, + "xmin": 513.1540272466536 + }, + { + "coef": [ + 7536.1474197495045, + 50.81374030149823, + 1.4266729686592077, + 0.06873257960159791, + 0.0037848364569332145, + 0.0002239878697277278, + 1.3804795574821915e-05, + 8.721250391432789e-07, + 5.595143519473436e-08, + 3.627175294818012e-09, + 2.351076430984493e-10, + -3.2062950927643075e-11, + -1.5347723092418164e-12 + ], + "xmax": 513.2352020181593, + "xmin": 513.1888164344418 + }, + { + "coef": [ + 7652.863734461806, + 67.07764802027262, + 2.85784929015491, + 0.19768527182012677, + 0.015533259320669825, + 0.0012972744964723432, + 0.00011168035049322779, + 9.750616790003647e-06, + 8.544213518717638e-07, + 7.455381691843875e-08, + 6.426568145883284e-09, + 4.846820928891973e-10, + 3.9335645851679146e-11 + ], + "xmax": 513.2815876018767, + "xmin": 513.2352020181593 + }, + { + "coef": [ + 7751.51000600122, + 29.070950548416324, + 0.5929118949104978, + 0.01873600951428757, + 0.0006621657404767138, + 2.443875787862266e-05, + 9.119811866658469e-07, + 3.369935343284535e-08, + 1.2040973634188752e-09, + -5.586030243055325e-11, + -1.8926111320276956e-12, + -2.743859300014924e-11, + -7.958078640513122e-13 + ], + "xmax": 513.2970494631159, + "xmin": 513.2815876018767 + }, + { + "coef": [ + 7842.269079774705, + 63.950467283790616, + 3.0765500086868487, + 0.217297741732483, + 0.016614764914760376, + 0.0012752497081748913, + 9.359917241341113e-05, + 6.176257630835482e-06, + 3.143630181113055e-07, + 3.054498159929031e-09, + -2.2292454049078203e-09, + -3.2529783869689187e-10, + -4.7975845518521965e-11 + ], + "xmax": 513.3231413539569, + "xmin": 513.2970494631159 + }, + { + "coef": [ + 7937.466548959322, + 28.55298302349729, + 0.6364980524184616, + 0.019248482175156425, + 0.0005848277609188123, + 1.5707166424875404e-05, + 2.835723775540006e-07, + -3.5199731762165097e-09, + -7.265712731990139e-10, + -4.4225486553542814e-11, + -1.1355616973819792e-12, + -1.5576403447695578e-11, + -6.252776074688882e-13 + ], + "xmax": 513.3318386509039, + "xmin": 513.3231413539569 + }, + { + "coef": [ + 8013.136692262757, + 48.16695708562762, + 1.783666701372303, + 0.08056004707672448, + 0.0030948398948198513, + 5.2056703716989985e-05, + -6.0855789256680595e-06, + -8.675658222995399e-07, + -6.739711854662248e-08, + -3.249815089830987e-09, + -4.356953112550412e-12, + 4.937694085031036e-11, + 4.774847184307873e-12 + ], + "xmax": 513.3434350468333, + "xmin": 513.3318386509039 + }, + { + "coef": [ + 8127.377760181861, + 67.11076407615546, + 3.021297013374996, + 0.11715868550258257, + -0.0006998995427611694, + -0.0006320137137745301, + -5.048448887556461e-05, + 6.587941161446075e-07, + 6.419804403672892e-07, + 8.130386141729884e-08, + 4.3970285229001375e-09, + -2.0880542123580274e-10, + -7.196376827778295e-11 + ], + "xmax": 513.3550314427627, + "xmin": 513.3434350468333 + }, + { + "coef": [ + 8225.617766576157, + 28.41343303009531, + 0.423516798483926, + 0.0021178334337340512, + -0.00013494671130352977, + -1.1116406236742964e-06, + 2.8403853015156835e-07, + 1.4576774776238934e-08, + 1.7500191284251813e-10, + -7.200140365412863e-12, + 1.299816908921528e-11, + 3.7933510788808163e-10, + 1.1254996934439987e-11 + ], + "xmax": 513.3588969080724, + "xmin": 513.3550314427627 + }, + { + "coef": [ + 8309.020837873171, + 55.81028960230159, + 1.2479040721622516, + 0.0019426462647139952, + 0.0004065927488830757, + 0.00023638966941566742, + 1.9099614670584737e-05, + 5.304095417623143e-07, + 1.4835260434661422e-08, + 5.761270268526031e-09, + 6.539642972670397e-10, + -2.2275012178895013e-10, + -1.0345502232667059e-11 + ], + "xmax": 513.3654198807827, + "xmin": 513.3588969080724 + }, + { + "coef": [ + 8386.794192576588, + 20.859098753286126, + 0.14755320194425692, + 0.0010809179148820647, + 7.346125236452394e-05, + 2.803400056308199e-06, + 6.522831498045132e-08, + 2.2251553844019557e-09, + 8.132317929419029e-11, + 7.238867290948597e-12, + 1.5043752902488145e-11, + 9.454963390074456e-10, + 1.34718902700115e-11 + ], + "xmax": 513.3675942050195, + "xmin": 513.3654198807827 + }, + { + "coef": [ + 8437.301942507092, + 29.806265034613602, + 0.31355709123920306, + 0.0077514310174829895, + 0.0005439704844992796, + 2.648901681923019e-05, + 1.2351094927929573e-06, + 7.012704472583732e-08, + 4.0752173866842516e-09, + 2.3715174177208743e-10, + 1.8416269426105382e-11, + 1.2301015669958496e-10, + 2.7853275241795927e-12 + ], + "xmax": 513.3704933040018, + "xmin": 513.3675942050195 + }, + { + "coef": [ + 8499.858018963001, + 32.890385178946346, + 0.48428926275865425, + 0.023394853279153784, + 0.0016614515199825585, + 0.0001090978114853602, + 7.84938875488699e-06, + 6.022724329046255e-07, + 4.731971960829784e-08, + 3.816278938371886e-09, + 3.195345311027838e-10, + 1.6181553981053844e-10, + 6.139089236967266e-12 + ], + "xmax": 513.3733924029841, + "xmin": 513.3704933040018 + }, + { + "coef": [ + 8545.185552493538, + 12.010173536751875, + 0.08436468759983345, + 0.0019298860616285332, + 5.513947924700697e-05, + 1.6391327730183494e-06, + 5.339946401145977e-08, + 1.9258945052515063e-09, + -1.8330265665457566e-10, + -6.662790816390609e-10, + -2.421924385943728e-10, + 3.3577091375207364e-11, + 2.3590018827235326e-10 + ], + "xmax": 513.3743587693116, + "xmin": 513.3733924029841 + }, + { + "coef": [ + 8586.950326236562, + 30.356219868733586, + 0.7370655068926512, + 0.05333468307507567, + 0.004641061121066264, + 0.0004416360306263637, + 4.5179020236424016e-05, + 4.8384805891369865e-06, + 5.355290854599048e-07, + 6.07982824700115e-08, + 7.108684690513301e-09, + 2.230461654642012e-09, + 1.6643753042444587e-10 + ], + "xmax": 513.3765330935483, + "xmin": 513.3743587693116 + }, + { + "coef": [ + 8629.833740949347, + 11.887516434107475, + 0.1614719117431282, + 0.005861922146059897, + 0.0002570190206729416, + 1.253271849282155e-05, + 6.553524731310966e-07, + 3.638839234608948e-08, + 1.7269389894858395e-09, + 1.0478333988483789e-10, + -3.148766159943843e-10, + -4.828639242981954e-10, + 2.9746161089860834e-10 + ], + "xmax": 513.3772578682939, + "xmin": 513.3765330935483 + }, + { + "coef": [ + 8660.021890844217, + 18.633933077274154, + 0.536125313826117, + 0.03826367176157172, + 0.0033364030252848458, + 0.00032491350055105457, + 3.3890741404058415e-05, + 3.7025440654254026e-06, + 4.1778639361996e-07, + 4.7371829430861074e-08, + 5.30519420112516e-09, + 7.605670255116634e-10, + 4.5093884182279e-10 + ], + "xmax": 513.3782242346214, + "xmin": 513.3772578682939 + }, + { + "coef": [ + 8692.152218320829, + 13.289716033451368, + 0.39665088220404493, + 0.02737156839661488, + 0.0023325439450044136, + 0.00022238016337646047, + 2.271108890532117e-05, + 2.4295037921045755e-06, + 2.6819539548808596e-07, + 2.912115100558958e-08, + 2.9979954480345465e-09, + 5.964413002097874e-10, + 5.210267772781663e-10 + ], + "xmax": 513.3787678156806, + "xmin": 513.3782242346214 + }, + { + "coef": [ + 8711.15581954741, + 5.369013637752917, + 0.08457596410641817, + 0.0029679167200834977, + 0.00012919981406629298, + 6.293689582538418e-06, + 3.28420126048813e-07, + 1.6381479884940325e-08, + 9.624703910316946e-10, + 5.866478538386055e-11, + -3.581373100181574e-11, + -1.3011434806043887e-09, + -4.098410499864258e-11 + ], + "xmax": 513.378949009367, + "xmin": 513.3787678156806 + }, + { + "coef": [ + 8724.956567550316, + 8.602363319383057, + 0.27605608900622036, + 0.01927458602305645, + 0.0016747965164137578, + 0.00016294055846568424, + 1.6984315339564104e-05, + 1.8568669423393512e-06, + 2.0957618804915556e-07, + 2.4286163657037732e-08, + 2.964230284320464e-09, + 1.79026695603524e-09, + 1.3432099876808934e-10 + ], + "xmax": 513.3791906009488, + "xmin": 513.378949009367 + }, + { + "coef": [ + 8742.282665081637, + 8.811919373421274, + 0.4237405689610392, + 0.04318160823167493, + 0.00549346537066465, + 0.0007829316858027803, + 0.00011957954707720757, + 1.9137885414622988e-05, + 3.1675095493276882e-06, + 5.403087874789793e-07, + 9.328171525095113e-08, + 1.5134486987053063e-08, + 2.7534952096175402e-09 + ], + "xmax": 513.3793717946352, + "xmin": 513.3791906009488 + }, + { + "coef": [ + 8755.587754701579, + 4.149836434417241, + 0.1388970087418758, + 0.009654125123236414, + 0.0008382731280081806, + 8.15345832760123e-05, + 8.497046789810967e-06, + 9.247578444466032e-07, + 1.0455880524558811e-07, + 1.214403059394467e-08, + 1.6997293222542363e-09, + 4.111032327373002e-09, + 2.8387603379087523e-10 + ], + "xmax": 513.3794321925307, + "xmin": 513.3793717946352 + }, + { + "coef": [ + 8765.729071852931, + 6.276855438656983, + 0.5042385679161017, + 0.08346618386019862, + 0.01731279168575121, + 0.004027694320600757, + 0.0010047738779777424, + 0.0002627278487378939, + 7.106994450815507e-05, + 1.9733279830587364e-05, + 5.625037599303666e-06, + 1.750449430699903e-06, + 4.6918222551539657e-07 + ], + "xmax": 513.3794925904261, + "xmin": 513.3794321925307 + }, + { + "coef": [ + 8777.200131086973, + 5.355798150345628, + 1.0808178671494841, + 0.4767743625474953, + 0.2758533681182268, + 0.1850430101930772, + 0.13673733457077444, + 0.10843118824796992, + 0.09089682338416306, + 0.07981362571157323, + 0.07298504577037303, + 0.06926003326699291, + 0.03403748763668091 + ], + "xmax": 513.3795127230579, + "xmin": 513.3794925904261 + } + ], + "meta": { + "BrhoL / mol/m^3": 39315.228450127724, + "BrhoV / mol/m^3": -54739.11796257909, + "Tcrit / K": 512.5, + "Tcrittrue / K": 513.3795127230579, + "Treducing / K": 513.38, + "Ttriple / K": 175.61, + "gas_constant / J/mol/K": 8.31448, + "rhocrittrue / mol/m^3": 8785.166579383907 + } + } }, { "BibTeX_CP0": "", diff --git a/dev/fluids/R125.json b/dev/fluids/R125.json index ee80a6ff..a8574df2 100644 --- a/dev/fluids/R125.json +++ b/dev/fluids/R125.json @@ -385,3407 +385,3407 @@ "pseudo_pure": false, "SUPERANCILLARY": { "crit_anc": { - "Tc / K": 339.1772824561038, + "Tc / K": 339.1772824561048, "Theta_min": 0.01, "_note": "coefficients are for the function like ln(|rho^A-rhoc|) = sum_i c_i ln(Theta)^i with Theta=(Tc-T)/Tc", "cL": [ - 9.698680450099053, - 0.8674192666861741, - 0.17016043294857722, - 0.023199910318436906, - 0.0014721765667922485, - 4.5064828215427156e-05, - 5.385122195643724e-07 + 9.698662773644143, + 0.8674080963772329, + 0.1701576518515229, + 0.023199559914767236, + 0.0014721528903811037, + 4.506401044866738e-05, + 5.385008794331595e-07 ], "cV": [ - 9.084500610125186, - 0.5573120753346174, - 0.10425827310602873, - 0.016037237938205166, - 0.0010561291320730132, - 3.27777819927651e-05, - 3.935136212619075e-07 + 9.084481674621065, + 0.5573000924873148, + 0.10425528569411234, + 0.01603686112459132, + 0.0010561036540919513, + 3.277690196002826e-05, + 3.9350142704972196e-07 ], - "rhoc / mol/m^3": 4777.43852258239 + "rhoc / mol/m^3": 4777.438522582564 }, "jexpansions_p": [ { "coef": [ - 8841.656159569091, - 7081.559893196646, - 1268.8926731911174, - 120.6648421582423, - 5.794053788123899, - 0.06749120749529826, - -0.004703160710026309, - -4.474492734684196e-05, - 7.510745855911466e-06, - -5.210435060240544e-08, - -1.0029229456393105e-08, - 3.4566883636015566e-10, - 5.9259264162392356e-12 + 8841.656159569153, + 7081.55989319673, + 1268.8926731911367, + 120.66484215824653, + 5.794053788125529, + 0.06749120749892676, + -0.004703160704645132, + -4.4744922979372615e-05, + 7.5107439042874186e-06, + -5.210711698212333e-08, + -1.0030044212063444e-08, + 3.4298772177055425e-10, + 5.258016244624741e-12 ], - "xmax": 194.76606181222525, + "xmax": 194.7660618122254, "xmin": 172.52 }, { "coef": [ - 22533.508801233675, - 5482.3838677248705, - 274.2961281344674, - 6.867399051591069, - 0.07668500873068773, - -3.091414350387479e-05, - -5.821472545679877e-06, - 3.969558270343978e-08, - 6.334587362508477e-10, - 6.864445603265067e-13, - 5.907392027527223e-12, - -2.4967868958787424e-12, - 3.410605131648481e-13 - ], - "xmax": 202.1814157496337, - "xmin": 194.76606181222525 - }, - { - "coef": [ - 39030.40562214457, - 11390.532353509825, - 676.6515420504841, - 19.627189504411014, - 0.23452102898774932, - -0.0007263372849799816, - -2.3669730560195597e-05, - 4.2211784353639244e-07, - 2.656199958443071e-09, - -9.006065739075374e-11, - 1.047987098562252e-11, - -1.821057595069241e-11, + 22533.50880123393, + 5482.3838677249505, + 274.2961281344728, + 6.867399051592509, + 0.07668500872902033, + -3.0914163209593324e-05, + -5.8214751225815316e-06, + 3.9689746779103405e-08, + 6.324734503239271e-10, + 7.622357854742516e-13, + 4.4673587497200855e-12, + -1.4244426793779064e-11, -1.1368683772161603e-12 ], - "xmax": 212.06855433284494, - "xmin": 202.1814157496337 + "xmax": 202.18141574963386, + "xmin": 194.7660618122254 }, { "coef": [ - 74949.32211932774, - 25521.58781191263, - 1745.4602402012606, - 56.41705856034113, - 0.6680540835517664, - -0.004989698032119731, - -5.076287251843508e-05, - 3.4185692068878155e-06, - -2.060854332116125e-10, - 2.442842106860755e-10, - 1.222421541284146e-10, - -9.464811108571485e-12, - 8.185452315956354e-12 + 39030.405622145045, + 11390.532353509998, + 676.6515420504925, + 19.627189504410104, + 0.23452102898320185, + -0.0007263372613331194, + -2.3669717827269772e-05, + 4.2208692071653216e-07, + 2.645286022021796e-09, + -9.051540474164021e-11, + 5.4776501258714144e-12, + -9.115628932963127e-12, + 5.6843418860808015e-12 ], - "xmax": 225.2514057771266, - "xmin": 212.06855433284494 + "xmax": 212.06855433284517, + "xmin": 202.18141574963386 }, { "coef": [ - 159011.90434478046, - 61235.477130012114, - 4655.835452170424, - 160.56489721188626, - 1.7321551650464364, - -0.01993130028205373, - 0.0004267578031550726, - 3.655372273611314e-05, - 5.992868074314768e-07, - -5.998555311058711e-08, - -1.287588643784572e-08, - -5.136945616553283e-10, - 8.731149137020111e-11 + 74949.32211932876, + 25521.58781191301, + 1745.4602402012983, + 56.41705856034295, + 0.6680540835581329, + -0.004989698054857099, + -5.076288888933971e-05, + 3.418582849308342e-06, + -1.933525073867915e-10, + 2.50650673598486e-10, + 1.3588457465500852e-10, + -1.3102789915663195e-11, + -2.7284841053187847e-12 ], - "xmax": 242.8285410361688, - "xmin": 225.2514057771266 + "xmax": 225.2514057771269, + "xmin": 212.06855433284517 }, { "coef": [ - 325146.92716876173, - 106635.4411409548, - 6738.474461577571, - 185.97764623415284, - 1.5107425512083155, - 2.1523856483395898e-05, - 0.000924832989332503, - -2.5783434031768016e-05, - -2.712442872576171e-06, - 2.2922038449508848e-07, - 2.3862887177860707e-08, - -1.3037805950849956e-09, - -1.709850039333105e-10 + 159011.9043447833, + 61235.47713001336, + 4655.835452170538, + 160.56489721193233, + 1.732155165044011, + -0.019931300303275272, + 0.0004267578098247004, + 3.655372516143234e-05, + 5.99280744133465e-07, + -6.003224050527812e-08, + -1.2872854788839812e-08, + -4.767084437832292e-10, + 9.731593308970332e-11 ], - "xmax": 260.405676295211, - "xmin": 242.8285410361688 + "xmax": 242.8285410361692, + "xmin": 225.2514057771269 }, { "coef": [ - 486506.3970793512, - 48711.23912952851, - 920.6490220250056, - 7.494429473975801, - 0.019577189472725222, - 4.190615396939329e-05, - 5.339319934871131e-07, - -6.043003674679183e-10, - 6.552320707672023e-10, - 2.4698667339154246e-10, - 1.2408716493181226e-10, - -1.6774291061691282e-10, - 3.637978807091713e-12 + 325146.9271687672, + 106635.44114095658, + 6738.474461577665, + 185.97764623424138, + 1.5107425511998267, + 2.1523817678288624e-05, + 0.0009248328753425003, + -2.578344737102364e-05, + -2.7124513611933877e-06, + 2.2925797694276177e-07, + 2.404357345861293e-08, + -1.106117079899679e-09, + -5.638867150992155e-11 ], - "xmax": 266.2647213815584, - "xmin": 260.405676295211 + "xmax": 260.4056762952115, + "xmin": 242.8285410361692 }, { "coef": [ - 721737.5974580323, - 195354.24877729744, - 9980.961793355373, - 220.28043888462227, - 1.7908969937973533, - 0.023083610586333615, - 0.0015445217334427266, - 0.00011816587605333421, - 5.011793539798825e-06, - -4.067739884835405e-08, - 1.201012584847135e-08, - 1.414015949697071e-09, - 0.0 + 486506.39707935974, + 48711.23912952963, + 920.6490220249474, + 7.494429473764798, + 0.019577189399965646, + 4.190614669343567e-05, + 5.341066164698535e-07, + -1.5319099538854594e-10, + 5.897484522395515e-10, + 4.5071348658867843e-10, + 3.677567356161112e-11, + -1.677429106169128e-10, + 8.36735125631094e-11 ], - "xmax": 283.8418566406006, - "xmin": 266.2647213815584 + "xmax": 266.26472138155896, + "xmin": 260.4056762952115 }, { "coef": [ - 1010259.6969709232, - 84268.97861837786, - 1313.1057246724818, - 8.948552961839034, - 0.02887203777265028, + 721737.5974580448, + 195354.2487773004, + 9980.961793355511, + 220.28043888466593, + 1.7908969938337331, + 0.02308361022981169, + 0.0015445215879235743, + 0.00011816549042758066, + 5.011757160010754e-06, + -4.0691950763582416e-08, + 1.205378159415645e-08, + 1.7996417032487925e-09, + 3.637978807091713e-11 + ], + "xmax": 283.84185664060124, + "xmin": 266.26472138155896 + }, + { + "coef": [ + 1010259.6969709414, + 84268.9786183799, + 1313.10572467238, + 8.948552961446133, + 0.028872037627131128, 0.0002869604644575997, - 6.629445685455315e-06, - 1.193396957500653e-07, - 1.5139602215214124e-09, - 5.0875599522158e-10, - 2.1883976619676261e-10, - -3.207031727953306e-10, - -3.637978807091713e-11 + 6.629736723759882e-06, + 1.2011094725716873e-07, + 1.3975448996944776e-09, + 8.725538759307513e-10, + 1.3152827482656143e-10, + -2.915993423385968e-10, + 1.673470251262188e-10 ], - "xmax": 289.700901726948, - "xmin": 283.8418566406006 + "xmax": 289.7009017269487, + "xmin": 283.84185664060124 }, { "coef": [ - 1222835.0037393784, - 129526.36508689469, - 2564.6815988611097, + 1222835.003739403, + 129526.36508689859, + 2564.6815988613134, 22.680043193638, - 0.12104441496657535, - 0.0022867452597957875, - 6.8621816438173e-05, - 1.8101808628839766e-06, - 5.172213867033374e-08, - 2.3236744878207476e-09, - 2.2291067714345135e-10, - -2.083587619150845e-10, - 1.4551915228366852e-10 - ], - "xmax": 297.51296184207786, - "xmin": 289.700901726948 - }, - { - "coef": [ - 1545611.805394073, - 195242.7562648051, - 4631.048200393264, - 51.746982582807405, - 0.5202356022574426, - 0.017412707055783926, - 0.0007296776394545066, - 3.103959069596954e-05, - 1.4255721074493972e-06, - 6.810923116631836e-08, - 3.617158994301863e-09, - 7.338636589798256e-10, - 7.275957614183426e-11 - ], - "xmax": 307.4001004252891, - "xmin": 297.51296184207786 - }, - { - "coef": [ - 1818623.9808952594, - 73647.09292204912, - 563.1726734809458, - 2.1757389420413755, - 0.010487762844109119, - 0.000145455374463319, - 2.360099147216247e-06, - 4.047210034651903e-08, - 1.2774314062448677e-10, - 8.617870949044592e-10, - 4.769891061052912e-10, - -7.680274106726282e-10, - 4.3655745685100555e-11 - ], - "xmax": 310.6958132863595, - "xmin": 307.4001004252891 - }, - { - "coef": [ - 1997191.979861217, - 105408.05210758027, - 1058.1712339212836, - 5.712077819275656, - 0.0469252835037325, - 0.000993169406647937, - 2.4108158903984724e-05, - 6.253821637049317e-07, - 1.635729786604652e-08, - 1.483350203931243e-09, - 3.210872843862467e-10, - 1.4457400292149256e-10, - 2.1827872842550278e-10 - ], - "xmax": 315.0900971011201, - "xmin": 310.6958132863595 - }, - { - "coef": [ - 2255905.297071349, - 154262.23062169622, - 2036.9470737695617, - 16.29868337525601, - 0.25692409257556714, - 0.00887437515972711, - 0.00034814363846957813, - 1.4809532664416922e-05, - 6.747237726313951e-07, - 3.3663460685503264e-08, - 2.2215622676493954e-09, - -5.335401011588408e-10, + 0.12104441502478301, + 0.002286744852342161, + 6.862139443263138e-05, + 1.810399141612402e-06, + 5.194041739875924e-08, + 2.294570657364014e-09, + 3.5387791419875294e-10, + -2.2291067714345124e-10, 0.0 ], - "xmax": 320.9491421874675, - "xmin": 315.0900971011201 + "xmax": 297.5129618420786, + "xmin": 289.7009017269487 }, { "coef": [ - 2537837.1864059377, - 126862.34214461003, - 1255.0496454057754, - 9.009524425910303, - 0.16036311707624082, - 0.0053275092616506215, - 0.00020252527950179622, - 8.490733552380946e-06, - 3.838974687908632e-07, - 1.9714451983119813e-08, - 1.5313442502957912e-09, - -6.582293365937801e-10, - -5.820766091346741e-11 + 1545611.8053941024, + 195242.7562648079, + 4631.048200393264, + 51.74698258276375, + 0.5202356022574426, + 0.01741270709943967, + 0.0007296776249025913, + 3.103956159213908e-05, + 1.4255575555341689e-06, + 6.816743882723182e-08, + 3.6899185704436973e-09, + 7.193117437514588e-10, + 0.0 ], - "xmax": 325.343426002228, - "xmin": 320.9491421874675 + "xmax": 307.40010042528985, + "xmin": 297.5129618420786 }, { "coef": [ - 2710394.058984183, - 44578.15735239712, - 148.2619893525429, - 0.4131452604029253, - 0.003188197721501826, + 1818623.980895295, + 73647.09292205273, + 563.1726734809555, + 2.1757389414787016, + 0.010487762679187412, + 0.0001454546953739417, + 2.36051630211946e-06, + 4.1073579509291526e-08, + -6.628239575373807e-11, + 1.5214739185904232e-09, + 2.829635697270664e-10, + 6.628239575373807e-11, + 2.3283064365386963e-10 + ], + "xmax": 310.6958132863603, + "xmin": 307.40010042528985 + }, + { + "coef": [ + 1997191.9798612548, + 105408.05210758165, + 1058.171233921332, + 5.712077819285358, + 0.046925283494031224, + 0.000993169358141553, + 2.4108178306538365e-05, + 6.25450072642664e-07, + 1.6405804250141073e-08, + 1.5512591416636217e-09, + 3.113860075673353e-10, + 2.1248294065387135e-10, + 2.6193447411060333e-10 + ], + "xmax": 315.0900971011209, + "xmin": 310.6958132863603 + }, + { + "coef": [ + 2255905.297071391, + 154262.23062169988, + 2036.9470737690765, + 16.298683374518713, + 0.25692409261437227, + 0.008874375120922004, + 0.000348144288455125, + 1.4811007258493395e-05, + 6.744715394341034e-07, + 3.4410459000559425e-08, + 1.8529137485307685e-09, + -4.850337170642845e-10, + 2.3283064365386963e-10 + ], + "xmax": 320.94914218746834, + "xmin": 315.0900971011209 + }, + { + "coef": [ + 2537837.1864059907, + 126862.34214461241, + 1255.0496454055426, + 9.009524425764784, + 0.16036311681430634, + 0.0053275099601425525, + 0.00020252574516308353, + 8.491461148142364e-06, + 3.837519496385795e-07, + 1.968534815266308e-08, + 1.2694097761851877e-09, + 2.1488557710823125e-10, + 2.6193447411060333e-10 + ], + "xmax": 325.3434260022289, + "xmin": 320.94914218746834 + }, + { + "coef": [ + 2710394.0589842377, + 44578.15735239805, + 148.2619893525138, + 0.41314526028651, + 0.003188197605086504, 4.229195252245777e-05, - 6.500217206913886e-07, - 1.1712072403365648e-08, - -6.81720660263574e-10, - 1.4093164216819167e-09, - 7.152632016596438e-10, - -3.078095752653719e-10, + 6.500508245218453e-07, + 1.1770280064279116e-08, + -6.235129993501069e-10, + 1.3220049303117158e-09, + 6.57055540746176e-10, + -2.7870574480863795e-10, 2.9103830456733704e-11 ], - "xmax": 326.80818727381484, - "xmin": 325.343426002228 + "xmax": 326.80818727381575, + "xmin": 325.3434260022289 }, { "coef": [ - 2816169.3662211336, - 61322.05169634179, - 274.7129477886356, - 1.146528824856444, - 0.014035025220425023, - 0.00028292559546868646, + 2816169.3662211904, + 61322.051696343246, + 274.7129477886647, + 1.1465288247691325, + 0.014035025395048006, + 0.00028292568278017783, 6.656848187713399e-06, - 1.7492676603935674e-07, - 3.7998567954449306e-09, - 1.584351839050805e-09, - 3.9470863200708683e-10, - -3.365009710936194e-10, - 2.9103830456733704e-10 + 1.7504318136118367e-07, + 3.79985679544493e-09, + 1.5261441781373378e-09, + 3.9470863200708657e-10, + -3.9470863200708657e-10, + 3.637978807091713e-10 ], - "xmax": 328.7612023025973, - "xmin": 326.80818727381484 + "xmax": 328.76120230259824, + "xmin": 326.80818727381575 }, { "coef": [ - 2958164.1527681877, - 80862.30774123431, - 468.3824813684393, - 2.9938488429991628, - 0.05987384374629642, - 0.0018814970620076093, - 6.983240627619304e-05, - 2.9093001137407783e-06, - 1.3027483533003297e-07, - 8.608643609500269e-09, - 1.1120357630487888e-09, - -1.1993472544189899e-09, - 2.9103830456733704e-11 + 2958164.1527682515, + 80862.3077412394, + 468.3824813684296, + 2.9938488437364597, + 0.0598738435037645, + 0.00188149733364336, + 6.983300775535581e-05, + 2.9088150498998326e-06, + 1.3003230340956017e-07, + 7.716126142160435e-09, + 7.821923512058065e-10, + -4.0384255526826835e-10, + 2.473825588822365e-10 ], - "xmax": 331.2329869484001, - "xmin": 328.7612023025973 + "xmax": 331.23298694840105, + "xmin": 328.76120230259824 }, { "coef": [ - 3067249.728479035, - 27806.692196913893, - 55.001436451872486, - 0.1401991628367429, - 0.0011629687365169177, - 1.4746430187811496e-05, - 2.2382349954044558e-07, - 5.427372967245806e-09, - -9.162792464520816e-10, - 1.4983558555867556e-09, - 7.717429200384733e-10, - -1.3145864999033172e-10, + 3067249.7284791046, + 27806.69219691756, + 55.00143645190159, + 0.14019916289495057, + 0.001162968823828409, + 1.4744713061814549e-05, + 2.237652918795321e-07, + 4.932607849481333e-09, + -9.16279246452082e-10, + 1.4692520251300223e-09, + 6.844314286682717e-10, + -1.0918850550625436e-09, -1.4551915228366852e-11 ], - "xmax": 332.05691516366767, - "xmin": 331.2329869484001 + "xmax": 332.0569151636687, + "xmin": 331.23298694840105 }, { "coef": [ - 3132783.870484298, - 37773.49848227323, + 3132783.8704843693, + 37773.49848227288, 101.57940851937285, - 0.39287572645578245, - 0.005050411879823619, - 9.793686792898808e-05, - 2.270676235744009e-06, - 5.966746892665839e-08, - 6.35667779693846e-10, - 1.7508463177583177e-09, - 7.229792710640471e-10, - 3.3720320811029205e-11, + 0.3928757264266786, + 0.00505041196713511, + 9.79380029783759e-05, + 2.2707344434049226e-06, + 6.077341448401427e-08, + 6.356677796938456e-10, + 1.6053271654746494e-09, + 8.393945928909816e-10, + -1.1595367279150524e-09, -7.275957614183426e-11 ], - "xmax": 333.15548611735784, - "xmin": 332.05691516366767 + "xmax": 333.1554861173588, + "xmin": 332.0569151636687 }, { "coef": [ - 3222136.6078508855, - 51667.8680510537, - 191.80225860696603, - 1.221357270876488, - 0.026525067247839488, - 0.0008565175571312836, - 3.31514989191958e-05, - 1.437355840735762e-06, - 6.608983299818774e-08, - 4.98172097715596e-09, - 1.0718757578446504e-09, - -4.315914877965089e-10, + 3222136.6078509577, + 51667.86805105473, + 191.80225860698545, + 1.2213572710317082, + 0.026525067441865023, + 0.000856517479521069, + 3.315146011408853e-05, + 1.4375110611648646e-06, + 6.599282022999864e-08, + 4.9623184235181376e-09, + 9.166553287420704e-10, + -3.9278638052086364e-10, + 8.731149137020111e-11 + ], + "xmax": 334.6202473889457, + "xmin": 333.1554861173588 + }, + { + "coef": [ + 3313676.072588069, + 39794.25659334286, + 116.42670170055197, + 0.7312796290455654, + 0.01601293933770732, + 0.0005145991993404815, + 1.980708173589008e-05, + 8.50991745282243e-07, + 3.79556521882312e-08, + 3.5464100430710562e-09, + 9.35579847265934e-10, + -1.2067259447739022e-10, + -2.9103830456733704e-11 + ], + "xmax": 335.71881834263587, + "xmin": 334.6202473889457 + }, + { + "coef": [ + 3367050.498874447, + 13476.626744041545, + 13.66624080322218, + 0.03497119577367863, + 0.0003150312346492124, + 4.130334119110049e-06, + 6.603077912455721e-08, + 2.4214301096804658e-09, + -1.1990692304976502e-09, + 7.334079431899111e-10, + 8.964065623871763e-10, + 9.080309259303133e-10, 0.0 ], - "xmax": 334.6202473889447, - "xmin": 333.15548611735784 + "xmax": 336.0850086605326, + "xmin": 335.71881834263587 }, { "coef": [ - 3313676.0725879953, - 39794.25659334221, - 116.42670170039675, - 0.7312796288515399, - 0.01601293953173286, - 0.000514599179937928, - 1.9807159346104632e-05, - 8.510305503895186e-07, - 3.809147006369596e-08, - 3.4687998285197662e-09, - 8.385670790768219e-10, - -2.3659826288278216e-11, - 2.9103830456733704e-11 - ], - "xmax": 335.71881834263485, - "xmin": 334.6202473889447 - }, - { - "coef": [ - 3367050.4988743714, - 13476.6267440411, - 13.66624080314457, - 0.03497119596770416, - 0.0003150312152466588, - 4.1303535216636865e-06, - 6.595316891000591e-08, - 2.440832663318288e-09, - -1.1020564623085376e-09, - 8.69225818654668e-10, - 8.770040087493542e-10, - 8.69225818654668e-10, - 1.4551915228366852e-10 - ], - "xmax": 336.08500866053157, - "xmin": 335.71881834263485 - }, - { - "coef": [ - 3398657.9513956932, - 18142.276377276008, - 25.25017140513119, + 3398657.9513957687, + 18142.27637727624, + 25.250171405305814, 0.09939724464601961, - 0.0013843112235969604, + 0.0013843111071816386, 2.7905117526024514e-05, 6.723992607296172e-07, - 1.9398789226942926e-08, - -1.0051683782872247e-09, - 1.6454526483353662e-09, - 3.9181548363599307e-10, - -1.4395533800784064e-09, - 3.4924596548080444e-10 + 1.934058156602946e-08, + -1.0051683782872251e-09, + 1.8200756310757688e-09, + 5.66438466376395e-10, + -1.439553380078406e-09, + 4.0745362639427185e-10 ], - "xmax": 336.57326241772716, - "xmin": 336.08500866053157 + "xmax": 336.5732624177282, + "xmin": 336.0850086605326 }, { "coef": [ - 3447839.6329421457, - 31090.76159994678, - 77.36332412202194, - 0.6760238080909211, - 0.020999710525412527, - 0.0009343089344646374, - 4.9323526237573254e-05, + 3447839.632942223, + 31090.761599947306, + 77.36332412184731, + 0.6760238079745058, + 0.02099971070003551, + 0.0009343090508799592, + 4.932364265289508e-05, 2.885951634083167e-06, - 1.7961303558550766e-07, + 1.795548279245942e-07, 1.3694606308117596e-08, - 1.6140085121243314e-09, - -1.0901395639031247e-09, + 1.7886314948647332e-09, + -1.0901395639031243e-09, 0.0 ], - "xmax": 337.3971906329948, - "xmin": 336.57326241772716 + "xmax": 337.39719063299583, + "xmin": 336.5732624177282 }, { "coef": [ - 3489504.982745272, - 10505.798984078261, - 9.308045820763228, - 0.036425250559685526, - 0.0005043304053938433, - 9.878574045147062e-06, - 2.297683490856874e-07, - 6.20550825750945e-09, - -9.668187752973828e-10, - 7.339881316435132e-10, - 8.958263739335742e-10, - -6.047880693662372e-10, - -5.820766091346741e-11 - ], - "xmax": 337.67183337141734, - "xmin": 337.3971906329948 - }, - { - "coef": [ - 3514129.858983181, - 14127.217546287417, - 17.598070445337907, - 0.1153660980797231, - 0.00265627346943618, - 8.578384750037271e-05, - 3.2631052799634355e-06, - 1.382593855150323e-07, - 4.93146033209752e-09, - 1.063928741989623e-09, - 8.569240681548015e-10, - 1.0057210810761555e-09, + 3489504.9827453503, + 10505.798984078008, + 9.308045820375177, + 0.03642525065669829, + 0.0005043301919657533, + 9.878438227271599e-06, + 2.298459593002387e-07, + 6.12789804295816e-09, + -1.0638315434864954e-09, + 6.563779170922237e-10, + 8.570212666579289e-10, + -5.077753011771245e-10, 1.1641532182693481e-10 ], - "xmax": 338.03802368931406, - "xmin": 337.67183337141734 + "xmax": 337.67183337141836, + "xmin": 337.39719063299583 }, { "coef": [ - 3542530.0811730926, - 14274.42890563865, - 19.312765930646542, - 0.17772866583431618, - 0.005642946676793386, - 0.00024832018420578025, - 1.2819580710371515e-05, - 7.312209579446112e-07, - 4.2824516882678376e-08, - 4.614726761797562e-09, - 7.403780422414395e-10, - -4.1886111279830614e-11, - 3.4924596548080444e-10 + 3514129.85898326, + 14127.217546287262, + 17.598070445434917, + 0.11536609786629502, + 0.002656273450033626, + 8.578392511058726e-05, + 3.2631440850707115e-06, + 1.3833699572958358e-07, + 4.912057778459697e-09, + 1.0833312956274458e-09, + 8.375215145169787e-10, + 9.66915973800511e-10, + -2.9103830456733704e-11 ], - "xmax": 338.4042140072107, - "xmin": 338.03802368931406 + "xmax": 338.0380236893151, + "xmin": 337.67183337141836 }, { "coef": [ - 3561615.39117373, - 4793.708840177178, - 2.3336401544346783, - 0.009626976056179903, - 0.00013396194654802238, - 2.558767019711391e-06, - 5.842403794084406e-08, - 2.5775906964697807e-09, - -1.1806068345465631e-09, - 2.752213679210183e-09, - 9.148689583382636e-10, - -5.656229928574592e-10, - 0.0 - ], - "xmax": 338.52627744650965, - "xmin": 338.4042140072107 - }, - { - "coef": [ - 3574537.7546399515, - 8133.420866065403, - 7.172810041542586, - 0.06503625875436504, - 0.0019456116356440908, - 7.923905602459851e-05, - 3.7620416396385054e-06, - 1.9584647183362455e-07, - 9.684778851828863e-09, - 2.480622279085824e-09, - 8.954220538952858e-10, - 7.343924516818016e-10, - 1.1641532182693481e-10 - ], - "xmax": 338.7322595003265, - "xmin": 338.52627744650965 - }, - { - "coef": [ - 3585401.893489594, - 2724.3396163433954, - 0.8648956933009482, - 0.0034307530897626243, - 4.36807584060764e-05, - 7.503715300524524e-07, - 1.6339779499740242e-08, - 2.053841348915458e-09, - -1.1225187742999796e-09, - 1.8792183661750557e-09, - 8.565416967579124e-10, - -2.1625742670977084e-10, - -5.820766091346741e-11 - ], - "xmax": 338.8009201849321, - "xmin": 338.7322595003265 - }, - { - "coef": [ - 3591769.0332273073, - 3643.5565317891474, - 1.6351269760468765, - 0.010553983405998368, - 0.00021394480222610747, - 5.802389068920266e-06, - 1.8316291047250134e-07, - 7.176140714537079e-09, - -1.297166962276871e-09, - 1.7046205886711428e-09, - 5.072705260406188e-10, - -4.160923873287948e-11, - 2.9103830456733704e-10 - ], - "xmax": 338.8924677644063, - "xmin": 338.8009201849321 - }, - { - "coef": [ - 3599069.6764335586, - 3657.213044804848, - 1.7871091098280698, - 0.015217722371399355, - 0.00039267280260850765, - 1.3311196763020967e-05, - 5.091645829854272e-07, - 2.1223623258087853e-08, - -6.763189556338589e-10, - 1.840472173903207e-09, - 4.878342626354893e-10, - 9.42423464991848e-11, - 3.4924596548080444e-10 - ], - "xmax": 338.9840153438805, - "xmin": 338.8924677644063 - }, - { - "coef": [ - 3603950.830149191, - 1222.3512534770582, - 0.21406712864488833, - 0.0007588811734644202, - 7.847307347741915e-06, - 1.0211290321032838e-07, - 3.5922090085284327e-09, - 1.4718574909432315e-09, - -1.5300651518566989e-09, - 1.7628957955105685e-09, - 3.9078765828772555e-10, - 8.897808818085574e-10, + 3542530.0811731718, + 14274.42890563927, + 19.312765930607735, + 0.17772866604774426, + 0.00564294663798828, + 0.0002483200483879048, + 1.2819600112925152e-05, + 7.313179707128003e-07, + 4.2843919436316194e-08, + 4.653531869073207e-09, + 5.851576131388593e-10, + -6.128866491765272e-11, 3.2014213502407074e-10 ], - "xmax": 339.01453120370525, - "xmin": 338.9840153438805 + "xmax": 338.40421400721175, + "xmin": 338.0380236893151 }, { "coef": [ - 3607239.482165343, - 2066.7304601994083, - 0.6490740054896346, - 0.0046325935954914955, - 9.222614152938441e-05, - 2.197569304850545e-06, - 4.7616591903719715e-08, - 8.121819762851712e-10, - -1.219635602679443e-09, - 1.801712211814117e-09, - 9.340478511188511e-10, - 1.1614279417659755e-09, + 3561615.3911738107, + 4793.708840177255, + 2.3336401542988603, + 0.00962697625020544, + 0.00013396192714546873, + 2.558728214604115e-06, + 5.840463538720624e-08, + 2.7134085719345385e-09, + -1.0835940663574511e-09, + 2.8298238937614734e-09, + 8.954664047004407e-10, + -5.462204392196363e-10, 0.0 ], - "xmax": 339.0660267171595, - "xmin": 339.01453120370525 + "xmax": 338.5262774465107, + "xmin": 338.40421400721175 }, { "coef": [ - 3609996.8847680357, - 690.0948077384355, - 0.07667873834996085, - 0.00021396757531379145, - 1.5530413069875865e-06, - 1.0532880469974964e-08, - 1.3996900172858548e-09, - 8.704087583393741e-10, - -1.1614470629067111e-09, - 1.85993899386832e-09, - 8.758210690646481e-10, - -3.519521208434415e-10, - -2.9103830456733704e-11 + 3574537.7546400325, + 8133.420866066315, + 7.172810041445573, + 0.06503625861854717, + 0.0019456116550466444, + 7.923903662204488e-05, + 3.761944626870316e-06, + 1.9582706927998672e-07, + 9.704181405466686e-09, + 2.4612197254480017e-09, + 8.566169466196404e-10, + 7.149898980439795e-10, + 1.7462298274040222e-10 ], - "xmax": 339.0831918883109, - "xmin": 339.0660267171595 + "xmax": 338.73225950032753, + "xmin": 338.5262774465107 }, { "coef": [ - 3611608.015969194, - 921.1009575704009, - 0.14203441482850554, - 0.0005816418340129871, - 5.683068867949816e-06, - 3.641589340749166e-08, - 7.788019162140168e-10, - 1.7823351639785491e-09, - -1.7241275030650817e-09, - 1.7823351639785491e-09, - 5.459712725601472e-10, - -1.4190861862621583e-09, + 3585401.893489675, + 2724.33961634357, + 0.8648956931845329, + 0.0034307529151396416, + 4.368093302905914e-05, + 7.50313322391539e-07, + 1.639798716065371e-08, + 2.0538413489154583e-09, + -1.2389340961269148e-09, + 1.7628030443481215e-09, + 9.147493576713794e-10, + 1.6573216944099157e-11, + -5.820766091346741e-11 + ], + "xmax": 338.80092018493315, + "xmin": 338.73225950032753 + }, + { + "coef": [ + 3591769.033227389, + 3643.556531789671, + 1.6351269759304612, + 0.010553983464206029, + 0.00021394503505675112, + 5.8024472765811795e-06, + 1.832211181334148e-07, + 7.2343483754505465e-09, + -1.3553746231903386e-09, + 1.8792435714115455e-09, + 5.654781869540858e-10, + 1.65984221805883e-11, 3.4924596548080444e-10 ], - "xmax": 339.10607878317944, - "xmin": 339.0831918883109 + "xmax": 338.89246776440734, + "xmin": 338.80092018493315 }, { "coef": [ - 3613451.3773767515, - 922.2667320650432, - 0.14957293654905915, - 0.0006747785152652862, + 3599069.67643364, + 3657.213044805178, + 1.7871091099638878, + 0.015217722177373818, + 0.00039267293842638315, + 1.3311177360467328e-05, + 5.09183985539065e-07, + 2.1146013043536564e-08, + -8.897470456499064e-10, + 1.821069620265385e-09, + 5.072368162733114e-10, + 1.66321319478953e-11, + 4.94765117764473e-10 + ], + "xmax": 338.98401534388154, + "xmin": 338.89246776440734 + }, + { + "coef": [ + 3603950.8301492734, + 1222.3512534771553, + 0.2140671284896679, + 0.0007588811540618667, + 7.847152127312813e-06, + 1.0215170831760403e-07, + 3.49519624033932e-09, + 1.3360396154784747e-09, + -1.5688702591323443e-09, + 1.6852855809592791e-09, + 4.683978728390151e-10, + 8.121706672572679e-10, + 2.6193447411060333e-10 + ], + "xmax": 339.01453120370627, + "xmin": 338.98401534388154 + }, + { + "coef": [ + 3607239.482165425, + 2066.7304601993887, + 0.6490740053926218, + 0.004632593517881281, + 9.222610272427713e-05, + 2.1976081099578206e-06, + 4.7694202118271e-08, + 7.927794226473491e-10, + -1.4330636926954906e-09, + 1.782309658176295e-09, + 8.952427438432057e-10, + 1.0838177272146861e-09, + -1.1641532182693481e-10 + ], + "xmax": 339.0660267171605, + "xmin": 339.01453120370627 + }, + { + "coef": [ + 3609996.8847681186, + 690.0948077380087, + 0.07667873831115574, + 0.00021396755591123783, + 1.5530025018803108e-06, + 1.0688100899077543e-08, + 1.3608849100102096e-09, + 8.51006204701552e-10, + -1.2584598310958237e-09, + 1.8405364402304978e-09, + 7.788083008755354e-10, + -3.1314701356779616e-10, + 0.0 + ], + "xmax": 339.08319188831194, + "xmin": 339.0660267171605 + }, + { + "coef": [ + 3611608.0159692764, + 921.1009575702844, + 0.1420344148867132, + 0.0005816420086359698, + 5.682952452627989e-06, + 3.653230872931859e-08, + 6.623865943870816e-10, + 1.6659198421516147e-09, + -1.6077121812381473e-09, + 1.9569581467189518e-09, + 5.459712725601467e-10, + -1.5355015080890927e-09, + 4.0745362639427185e-10 + ], + "xmax": 339.10607878318046, + "xmin": 339.08319188831194 + }, + { + "coef": [ + 3613451.377376835, + 922.2667320648104, + 0.1495729364908515, + 0.0006747782824346425, 5.6299834726748325e-06, - -7.068619415138724e-08, - -7.428486794486028e-09, - 1.3166823985719506e-09, - -1.6077207031392877e-09, - 1.8405513467931573e-09, - 4.87755089745539e-10, - -1.5354929861879523e-09, - 2.9103830456733704e-10 + -7.062798649047377e-08, + -7.370279133572562e-09, + 1.2002670767450162e-09, + -1.6659283640527555e-09, + 1.7823436858796903e-09, + 5.45962750659006e-10, + -1.535492986187952e-09, + 3.4924596548080444e-10 ], - "xmax": 339.12896567804796, - "xmin": 339.10607878317944 + "xmax": 339.128965678049, + "xmin": 339.10607878318046 }, { "coef": [ - 3614681.4696004074, - 307.69245299578296, - 0.017241514775635562, - 2.6889239704350173e-05, + 3614681.46960049, + 307.6924529954337, + 0.017241514833843223, + 2.688953074265474e-05, 4.04182019436966e-08, - -1.4190691316734354e-09, - 1.4190691316734354e-09, - 1.491313913999935e-09, - -1.1420679485191305e-09, - 8.510296439517936e-10, - 8.952001834522286e-10, - -7.787848616252938e-10, - 0.0 + -1.5354844535003698e-09, + 1.419069131673435e-09, + 1.6659368967403376e-09, + -1.2002756094325984e-09, + 7.928219830383265e-10, + 9.534078443656957e-10, + -7.787848616252935e-10, + -5.820766091346741e-11 ], - "xmax": 339.1365946430042, - "xmin": 339.12896567804796 + "xmax": 339.1365946430052, + "xmin": 339.128965678049 }, { "coef": [ - 3615508.6771113486, - 519.5480024770535, - 0.050343533844728165, - 0.00013041707496703182, - -1.9268408030782983e-07, - -4.9983658040415776e-08, - -8.898375979547357e-10, - 6.570069543008661e-10, - -1.2390835634355402e-09, - 1.7629525116567468e-09, - 8.563922294492865e-10, - -4.4893860305501465e-10, - 0.0 + 3615508.6771114315, + 519.5480024766073, + 0.05034353394174094, + 0.00013041715257724638, + -1.9276169052238113e-07, + -5.0255293791345295e-08, + -7.346171688521564e-10, + 6.76409507938689e-10, + -1.1420707952464282e-09, + 1.8987703871215045e-09, + 8.369896758114636e-10, + -4.295360494171918e-10, + -1.1641532182693481e-10 ], - "xmax": 339.14946852136774, - "xmin": 339.1365946430042 + "xmax": 339.14946852136876, + "xmin": 339.1365946430052 }, { "coef": [ - 3616201.5428559612, - 173.2729716304236, + 3616201.5428560437, + 173.27297163054, 0.005707816941389498, - 4.602690501455285e-06, - -1.3540307376600815e-08, - 4.43583671070648e-10, - 1.3608538172468416e-09, - 1.2584909238591917e-09, - -1.3166985847726591e-09, - 1.8405675329938658e-09, - 9.534001908525697e-10, - -3.131159208044283e-10, - 5.820766091346741e-11 - ], - "xmax": 339.1537598141556, - "xmin": 339.14946852136774 - }, - { - "coef": [ - 3616605.913356611, - 231.10206404622997, - 0.01025755286561692, - 1.0041323300508209e-05, - -8.234176417941635e-08, - -2.5832130933325925e-09, - 2.059344145111386e-09, - 8.510389005619845e-10, - -1.6077384924370608e-09, - 1.898776797004398e-09, - 4.2952963953429847e-10, - -1.3849133496696143e-10, - 4.3655745685100555e-10 - ], - "xmax": 339.1594815378727, - "xmin": 339.1537598141556 - }, - { - "coef": [ - 3617068.199907876, - 231.18457945243887, - 0.010368102582048913, - 8.2080342170694e-06, - -1.5261781559373303e-07, - -3.320507993446149e-09, - 1.2832398614747896e-09, - 2.151012132419787e-09, - -1.1614818968908415e-09, - 1.8599738278524504e-09, - 9.339938959939852e-10, - 9.286512532369717e-10, - -2.9103830456733704e-11 - ], - "xmax": 339.16520326158985, - "xmin": 339.1594815378727 - }, - { - "coef": [ - 3617376.473711657, - 77.08000649798706, - 0.001158557291638739, - 2.313339778412659e-07, - -2.5196627904255155e-09, - -1.6712887953441378e-09, - 1.3220428298633333e-09, - 1.006263606675363e-09, - -1.3555095721561674e-09, - 1.995793842204309e-09, - 9.145892034690615e-10, - -5.071355770747896e-10, + 4.602748709116198e-06, + -1.365672269842775e-08, + 5.017913319841158e-10, + 1.4190614781603086e-09, + 1.2002832629457247e-09, + -1.1420756020322573e-09, + 1.8405675329938662e-09, + 8.369848690256346e-10, + -1.9670059897749313e-10, 1.4551915228366852e-10 ], - "xmax": 339.1671105028289, - "xmin": 339.16520326158985 + "xmax": 339.1537598141566, + "xmin": 339.14946852136876 }, { "coef": [ - 3617583.6451295507, - 130.09356000821305, - 0.0033082066828992655, - 7.81318763972115e-07, - -2.9159369648289086e-08, - -1.0504063658005005e-09, - 2.2145595840698486e-09, - 1.9181843407863373e-09, - -1.743561358045935e-09, - 1.8017690189594025e-09, - 4.683297566658263e-10, - 4.047851570361848e-10, - 3.7834979593753815e-10 - ], - "xmax": 339.17032897241984, - "xmin": 339.1671105028289 - }, - { - "coef": [ - 3617757.1120359255, - 43.370405526732064, - 0.00036813666301837325, - 1.7595448883754112e-08, - -4.823965751946958e-10, - 2.4956593154082625e-10, - 2.1369481659113373e-09, - 1.879380437117914e-09, - -1.5883421325505766e-09, - 7.152272188485655e-10, - 5.653413212477175e-10, - -5.071336603342501e-10, - 4.0745362639427185e-10 - ], - "xmax": 339.1714017956168, - "xmin": 339.17032897241984 - }, - { - "coef": [ - 3617858.313944669, - 57.831789800758756, - 0.0006547568120964405, - 1.7323813534081454e-08, - -1.2584991219644515e-09, - 2.1076122552203816e-10, - 1.3608456191415818e-09, - 2.0151987138395276e-09, - -1.1420838001375167e-09, - 1.7823680701856582e-09, - 8.951843318338426e-10, - 7.346301737432448e-10, - -1.4551915228366852e-10 - ], - "xmax": 339.17283222654606, - "xmin": 339.1714017956168 - }, - { - "coef": [ - 3617973.9827626613, - 57.83702823016914, - 0.0006548010499181997, - -9.04425632466774e-09, - -1.433122639756392e-09, - 7.928383697082506e-10, - 1.4190527450035109e-09, - 1.6659532834102617e-09, - -1.2584996570159899e-09, - 7.346307087947832e-10, - 1.011599118609239e-09, - -8.951837967823042e-10, - -1.1641532182693481e-10 - ], - "xmax": 339.17426265747537, - "xmin": 339.17283222654606 - }, - { - "coef": [ - 3618051.1005463433, - 19.280173397309895, - 7.273788675266151e-05, - -1.069806244422703e-09, - 3.713143134610941e-10, - 2.1076229567358e-10, - 1.4190522099035074e-09, - 1.083877209375591e-09, - -1.200292531202526e-09, - 1.7823691403372e-09, - 8.951832616823007e-10, - -3.713143134610941e-10, - -5.820766091346741e-11 - ], - "xmax": 339.1747394677851, - "xmin": 339.17426265747537 - }, - { - "coef": [ - 3618113.762941665, - 43.382517295731674, - 0.00036808683725898155, - -1.965745245107919e-08, - -5.988135468074663e-10, - 2.4956758132666176e-10, - 2.1951541770389695e-09, - 1.995797408730684e-09, - -1.704759104163347e-09, - 7.152288686344011e-10, - 5.071320105484145e-10, - -7.399626542022841e-10, - 4.0745362639427185e-10 - ], - "xmax": 339.1758122909821, - "xmin": 339.1747394677851 - }, - { - "coef": [ - 3618171.607279476, - 14.4614933295304, - 4.087646835957255e-05, - -2.059335900205299e-09, - 3.7131373371474437e-10, - -1.0115980037628858e-09, - 1.4772592910706251e-09, - 3.613989267952749e-11, - -1.2002931109488756e-09, - 2.946522938352898e-09, - 8.95182681935951e-10, - -2.5489841188780955e-10, - -2.9103830456733704e-11 - ], - "xmax": 339.17616989871436, - "xmin": 339.1758122909821 - }, - { - "coef": [ - 3618205.3512407397, - 19.282499696164212, - 7.264108741184888e-05, - -2.69962003645775e-09, - 4.877289217459886e-10, - 9.434768738868545e-11, - 1.3608438354479996e-09, - 9.674626010906967e-10, - -1.2002932447445663e-09, - 1.7823698538792404e-09, - 9.533902090537278e-10, - -3.131059390055864e-10, - -1.1641532182693481e-10 - ], - "xmax": 339.1766467090241, - "xmin": 339.17616989871436 - }, - { - "coef": [ - 3618235.4804515103, - 10.846661412348478, - 2.2974255986589782e-05, - -3.3250831424444947e-10, - -1.6737651236355e-11, - 3.659836167171594e-10, - 2.020530480735004e-09, - 1.995798122294247e-09, - -1.4719291740730402e-09, - 1.8211751395538446e-09, - 4.489236360713843e-10, - -1.6130768543407324e-09, + 3616605.913356694, + 231.10206404595834, + 0.010257553020837348, + 1.004140091072276e-05, + -8.212833608940031e-08, + -2.5638105396947695e-09, + 2.1563569133004977e-09, + 8.704414541998073e-10, + -1.5689333851614162e-09, + 1.9763870115556883e-09, + 5.265424077234105e-10, + -2.355041031560734e-10, 3.2014213502407074e-10 ], - "xmax": 339.1769149148233, - "xmin": 339.1766467090241 + "xmax": 339.1594815378737, + "xmin": 339.1537598141566 }, { "coef": [ - 3618249.9427279914, - 3.615594645493793, - 2.5519429345702876e-06, - 4.6299648525804877e-10, - 3.5191076753049493e-10, - 4.0478882434458137e-10, - 1.3996486639729082e-09, - -2.6648020496904714e-12, - -1.1614884162196577e-09, - 1.8599803471812666e-09, - 9.33987376665169e-10, - 6.958271289119185e-10, + 3617068.199907958, + 231.18457945298215, + 0.010368102446231037, + 8.207995411962126e-06, + -1.5252080282554392e-07, + -3.301105439808326e-09, + 1.2638373078369668e-09, + 2.0539993642306754e-09, + -1.2390921114421317e-09, + 1.9375840424037406e-09, + 9.145913423561624e-10, + 7.734308241343924e-10, + 5.820766091346741e-11 + ], + "xmax": 339.1652032615909, + "xmin": 339.1594815378737 + }, + { + "coef": [ + 3617376.4737117398, + 77.08000649853032, + 0.001158557505066829, + 2.312369650730768e-07, + -2.597273004976806e-09, + -1.5354709198793801e-09, + 1.4190555980524453e-09, + 1.2584968039670554e-09, + -1.1420814821401206e-09, + 1.7241580912747947e-09, + 1.0116019716581735e-09, + -5.459406843504342e-10, + 0.0 + ], + "xmax": 339.1671105028299, + "xmin": 339.1652032615909 + }, + { + "coef": [ + 3617583.6451296275, + 130.09356000386688, + 0.0033082069545350167, + 7.815127895084931e-07, + -2.8771318575532635e-08, + -3.9071954211453606e-10, + 1.3802497776434819e-09, + 1.4137179462029537e-09, + -1.2390949634625514e-09, + 1.8211715725972255e-09, + 8.563808294222753e-10, + 3.6598004976054024e-10, + 8.731149137020111e-11 + ], + "xmax": 339.17032897242075, + "xmin": 339.1671105028299 + }, + { + "coef": [ + 3617757.112035998, + 43.370405526770874, + 0.00036813679883624875, + 1.757604633011629e-08, + -5.794093433838086e-10, + 3.4657869972993893e-10, + 2.214558380462627e-09, + 1.8017702225666242e-09, + -1.5107319179992872e-09, + 7.540323261242108e-10, + 6.42951535799007e-10, + -4.683285530586048e-10, + 4.3655745685100555e-10 + ], + "xmax": 339.1714017956177, + "xmin": 339.17032897242075 + }, + { + "coef": [ + 3617858.313944743, + 57.83178980254379, + 0.0006547568314989942, + 1.846856419871298e-08, + -1.2390965683266294e-09, + 5.406046373650205e-10, + 1.4384558336928714e-09, + 1.6465501947209012e-09, + -1.180888907413162e-09, + 7.734352810188901e-10, + 8.563792245581973e-10, + -7.981715636447299e-10, + 5.820766091346741e-11 + ], + "xmax": 339.17283222654703, + "xmin": 339.1714017956177 + }, + { + "coef": [ + 3617973.9827627395, + 57.837028230052724, + 0.0006548009335028778, + -9.160671646494675e-09, + -1.4331226397563925e-09, + 7.346307087947836e-10, + 1.4772604059169779e-09, + 1.6077456224967947e-09, + -1.2584996570159903e-09, + 7.92838369708251e-10, + 1.0115991186092386e-09, + -7.78768474955369e-10, + -1.1641532182693481e-10 + ], + "xmax": 339.17426265747633, + "xmin": 339.17283222654703 + }, + { + "coef": [ + 3618051.1005464164, + 19.280173396824832, + 7.273784794755425e-05, + -1.0892087980605252e-09, + 3.907168670989162e-10, + 1.673675929535563e-11, + 1.4384547635413296e-09, + 1.1226823166512363e-09, + -1.2973052993916385e-09, + 1.8211742476128452e-09, + 8.563781544066554e-10, + -3.325092061854488e-10, + -8.731149137020111e-11 + ], + "xmax": 339.1747394677861, + "xmin": 339.17426265747633 + }, + { + "coef": [ + 3618113.7629417432, + 43.3825172951884, + 0.0003680866820385525, + -1.9676855004717012e-08, + -5.212033322561767e-10, + 2.8837268860230707e-10, + 2.2145567306767913e-09, + 1.9181871941793946e-09, + -1.6853565505255248e-09, + 7.540339759100463e-10, + 4.683269032727693e-10, + -5.847422250997041e-10, + 3.2014213502407074e-10 + ], + "xmax": 339.17581229098306, + "xmin": 339.1747394677861 + }, + { + "coef": [ + 3618171.607279559, + 14.461493332537795, + 4.087602210083888e-05, + -8.563775746603057e-10, + -3.0777564360904243e-10, + 6.570216090898469e-10, + 2.1369461147565888e-09, + 8.898522527437165e-10, + -1.5301365227918579e-09, + 1.8793824882726623e-09, + 6.235469310064361e-10, + -6.235469310064361e-10, + 4.0745362639427185e-10 + ], + "xmax": 339.1761698987154, + "xmin": 339.17581229098306 + }, + { + "coef": [ + 3618205.3512408226, + 19.282499695659745, + 7.264100980163433e-05, + -2.8548404655603296e-09, + 4.1011870719469835e-10, + 5.55425801130409e-11, + 1.4578566036371116e-09, + 8.122421719881172e-10, + -1.2196957983823891e-09, + 1.8599800684305306e-09, + 8.757799945024377e-10, + -4.1011870719469835e-10, + -8.731149137020111e-11 + ], + "xmax": 339.17664670902514, + "xmin": 339.1761698987154 + }, + { + "coef": [ + 3618235.480451594, + 10.846661412717127, + 2.2974178376375232e-05, + -3.71313421520094e-10, + -9.434786578764526e-11, + 2.1076318761458006e-10, + 2.1757509098375837e-09, + 2.073408336845537e-09, + -1.6659547104512652e-09, + 1.898785354105135e-09, + 5.459364042604962e-10, + -1.5936743007029096e-09, + 4.0745362639427185e-10 + ], + "xmax": 339.17691491482435, + "xmin": 339.17664670902514 + }, + { + "coef": [ + 3618249.9427280733, + 3.615594646095272, + 2.551807116694823e-06, + 7.494541250159979e-11, + 9.967757023880243e-11, + 5.40606699809339e-10, + 1.3802461103350854e-09, + 1.673775158813238e-11, + -1.239098630770948e-09, + 1.821175239905622e-09, + 1.031000144854281e-09, + 7.734373434632087e-10, + 0.0 + ], + "xmax": 339.17700431675746, + "xmin": 339.17691491482435 + }, + { + "coef": [ + 3618258.3791453554, + 4.820824617711335, + 4.536339107845129e-06, + 3.077760896064396e-10, + 2.1609285861476705e-10, + 6.57022055087244e-10, + 1.3802460768841152e-09, + 2.345044221577799e-09, + -1.239098664221918e-09, + 1.8793829342700596e-09, + 8.563771286629086e-10, + 1.0062680205680484e-09, -2.9103830456733704e-11 ], - "xmax": 339.17700431675644, - "xmin": 339.1769149148233 + "xmax": 339.1771235193349, + "xmin": 339.17700431675746 }, { "coef": [ - 3618258.3791452725, - 4.820824621611249, - 4.536280900184216e-06, - 1.913607677795044e-10, - 2.743005195282348e-10, - -1.4966613987110505e-09, - 1.438453737797583e-09, - 1.6465522906161895e-09, - -1.1808910033084503e-09, - 1.7629676124431243e-09, - 8.563771286629089e-10, - -3.3250818044170223e-10, - 1.1641532182693481e-10 + 3618266.815614234, + 3.6156422800435424, + 2.5511086246858087e-06, + 1.3315315146762478e-10, + 3.325081358401145e-10, + 1.9375906397851143e-09, + 1.4384536931959951e-09, + 1.4137216915639078e-09, + -1.1226833869965708e-09, + 1.9375906397851143e-09, + 9.727924058882559e-10, + -6.235464404074515e-10, + -1.1641532182693481e-10 ], - "xmax": 339.1771235193339, - "xmin": 339.17700431675644 + "xmax": 339.17721292126794, + "xmin": 339.1771235193349 }, { "coef": [ - 3618266.81561416, - 3.6156422801793604, - 2.5510310144712577e-06, - 1.525557051054469e-10, - 1.9669026037535754e-10, - 1.898785532509469e-09, - 1.3608434786447057e-09, - 1.4331242452017298e-09, - -1.1420859406343928e-09, - 1.898785532509469e-09, - 8.951821913369664e-10, - -6.041438867696293e-10, - -5.820766091346741e-11 + 3618271.6364774127, + 1.2052186304521488, + 2.8327994780275377e-07, + 2.495685067459705e-10, + 3.3250810238870357e-10, + 8.316451158806446e-10, + 1.4384536597445843e-09, + 2.495685067459705e-10, + -1.180891081361449e-09, + 1.762967690496123e-09, + 9.145847115233776e-10, + -7.399617287829754e-10, + 2.9103830456733704e-11 ], - "xmax": 339.17721292126697, - "xmin": 339.1771235193339 + "xmax": 339.1772427219123, + "xmin": 339.17721292126794 }, { "coef": [ - 3618271.6364773344, - 1.2052186306267718, - 2.8316353248092683e-07, - 2.4956850674597014e-10, - 3.3250810238870393e-10, - 8.316451158806443e-10, - 1.4384536597445847e-09, - 1.9136084583250273e-10, - -1.1226834204479812e-09, - 1.7047600295826553e-09, - 9.14584711523378e-10, - -6.817540678695083e-10, - -2.9103830456733704e-11 + 3618274.0469169402, + 1.205220898610669, + 2.832993503452411e-07, + 1.7195830334519292e-10, + 3.5191064487601375e-10, + 8.122425733933344e-10, + 1.2832332194914924e-09, + 2.3016596425866032e-10, + -1.2196961997876061e-09, + 1.8017728089222802e-09, + 7.593642712702856e-10, + -6.429489494433508e-10, + 8.731149137020111e-11 ], - "xmax": 339.17724272191134, - "xmin": 339.17721292126697 + "xmax": 339.1772725225567, + "xmin": 339.1772427219123 }, { "coef": [ - 3618274.046916862, - 1.2052208987270843, - 2.83415765667068e-07, - 1.7195830334519255e-10, - 2.354953230490793e-10, - 8.704502343068014e-10, - 1.2832332194914926e-09, - 1.7195830334519255e-10, - -1.1614885388741385e-09, - 1.6853574870953452e-09, - 7.011566103568186e-10, - -6.429489494433512e-10, - -2.9103830456733704e-11 + 3618275.653878896, + 0.4017408047582074, + 3.058108920145289e-08, + -1.3026357619787816e-09, + -2.1076342177137108e-10, + -6.6235149193064e-10, + 1.069805118324912e-09, + 1.6077472836945888e-09, + -1.6077472836945888e-09, + 2.5390698583100673e-09, + 3.71313187363303e-10, + 3.614043903096887e-11, + -1.1641532182693481e-10 ], - "xmax": 339.1772725225557, - "xmin": 339.17724272191134 - }, - { - "coef": [ - 3618275.653878814, - 0.40174080138216306, - 3.075571218419329e-08, - 3.614043903096851e-11, - -9.434809994443592e-11, - 1.083878335473382e-09, - 2.175750675680793e-09, - 1.1420859963868493e-09, - -1.665954944608056e-09, - 1.8405779273484582e-09, - 5.459361701037056e-10, - -9.533897964979773e-10, - 3.4924596548080444e-10 - ], - "xmax": 339.1772824561038, - "xmin": 339.1772725225557 + "xmax": 339.1772824561048, + "xmin": 339.1772725225567 } ], "jexpansions_rhoL": [ { "coef": [ - 13785.022266279795, - -302.568122427943, + 13785.022266279793, + -302.56812242794666, -1.1783874824216778, - -0.07854694323639556, + -0.07854694323594082, 0.00029868554604795683, - -0.00010096894805278898, - 2.2197868278020924e-06, - -1.433920063867863e-07, - 3.4473745039594965e-09, + -0.00010096894828016266, + 2.219786600428417e-06, + -1.433924611341372e-07, + 3.4476018776349397e-09, -1.4272550506756193e-10, - 6.756047152509151e-12, - -1.5264526173148133e-12, - 2.2737367544323206e-13 + 6.301299801622687e-12, + -1.7538262927580453e-12, + 0.0 ], - "xmax": 194.76606181222525, + "xmax": 194.7660618122254, "xmin": 172.52 }, { "coef": [ - 13377.956058472995, - -103.4394301867689, - -0.20108917460772188, - -0.00302048203132602, - -1.1088026502483367e-05, - -3.432484676805726e-07, - 2.3584499180415986e-11, - -4.2229140566761014e-11, - -4.837210249988023e-12, - 7.110947004420343e-12, - 2.8934947150818677e-12, - -1.5292526624224753e-12, - -2.2737367544323206e-13 - ], - "xmax": 202.1814157496337, - "xmin": 194.76606181222525 - }, - { - "coef": [ - 13134.038114625717, - -140.70260836827842, - -0.435989042698703, - -0.007832595161152449, - -6.087224815096304e-05, - -1.5317185435833579e-06, - -7.942754427838886e-09, - -2.945390861185245e-10, - -8.193182822339453e-13, - 6.731033843757979e-12, - 2.8186605248577677e-12, - -9.996711213119112e-13, - 0.0 - ], - "xmax": 212.06855433284494, - "xmin": 202.1814157496337 - }, - { - "coef": [ - 12800.076816340063, - -193.78069211427723, - -0.9876940722087051, - -0.022116557118216026, - -0.00031646703191601645, - -7.810012312421715e-06, - -7.515782219215683e-08, - -2.7748736229339094e-10, - -1.7275111508980098e-12, - -1.0095919972150058e-11, - 1.228346629864007e-12, - -1.455720305307239e-12, + 13377.95605847299, + -103.43943018676939, + -0.20108917460802506, + -0.003020482031022855, + -1.1088026578274593e-05, + -3.4324816451567203e-07, + 2.3508707955268243e-11, + -4.1925975666170036e-11, + -4.23088044880607e-12, + 6.959364554124855e-12, + 3.2724508408205877e-12, + -9.98714086388267e-13, -1.1368683772161603e-13 ], - "xmax": 225.2514057771266, - "xmin": 212.06855433284494 + "xmax": 202.18141574963386, + "xmin": 194.7660618122254 }, { "coef": [ - 12334.720273746998, - -272.8947645992648, - -2.39842146217141, - -0.07101187262380265, - -0.0016879187253205422, - -5.014334239533085e-05, - -1.890623917261534e-06, - -1.6071455249360346e-07, - -6.9567074937973854e-09, - 6.068428596942438e-10, - 7.732452971444146e-11, - -4.11020622172074e-12, - -5.684341886080801e-13 - ], - "xmax": 242.8285410361688, - "xmin": 225.2514057771266 - }, - { - "coef": [ - 11766.655501212372, - -296.0502613199951, - -3.4581821064798333, - -0.11013506453686842, - -0.0035220915603786157, - -0.0001476417060275674, - -5.37100809470186e-06, - -2.13385846985014e-08, - 1.0491221440000304e-09, - -1.3452763562648401e-09, - -5.7278160706736736e-11, - 5.891710056566289e-12, - -2.2737367544323206e-13 - ], - "xmax": 260.405676295211, - "xmin": 242.8285410361688 - }, - { - "coef": [ - 11361.933534646021, - -105.59422230348035, - -0.5003369676604885, - -0.00590147157593796, - -7.484982860811004e-05, - -1.0022788349873003e-06, - -1.0648606492105044e-08, - -1.672181882163393e-10, - -9.564844440773636e-12, - 5.813178795960306e-12, - 2.827020870882512e-12, - -8.943446296150395e-13, - -2.2737367544323206e-13 - ], - "xmax": 266.2647213815584, - "xmin": 260.405676295211 - }, - { - "coef": [ - 10916.328152151955, - -345.3959818030337, - -6.128308852587125, - -0.24737939749057605, - -0.0106615650779673, - -0.00047799846718991516, - -2.4337844266104602e-05, - -1.5247689902176167e-06, - -8.381336154658173e-08, - -4.249827194634708e-09, - -3.016253535501891e-10, - -2.0563144552870707e-11, - -5.115907697472721e-13 - ], - "xmax": 283.8418566406006, - "xmin": 266.2647213815584 - }, - { - "coef": [ - 10437.682876065523, - -127.80504701543069, - -0.957299740479671, - -0.01494396743956222, - -0.0002555484176995385, - -4.930759841590113e-06, - -1.0837911340852119e-07, - -2.465553370054438e-09, - -5.988604309354044e-11, - 4.179492609948581e-12, - 2.3006571401835322e-12, - -9.3641508752414e-13, - 2.2737367544323206e-13 - ], - "xmax": 289.700901726948, - "xmin": 283.8418566406006 - }, - { - "coef": [ - 10127.150228025812, - -183.85270949519332, - -2.1463459591885132, - -0.0500166771351565, - -0.0013224716353101337, - -4.029257645248999e-05, - -1.3531691160404115e-06, - -4.6977968455572464e-08, - -1.6815897050072986e-09, - -5.6568356918488866e-11, - 7.481195971753929e-13, - -1.089180110340241e-12, - -6.821210263296962e-13 - ], - "xmax": 297.51296184207786, - "xmin": 289.700901726948 - }, - { - "coef": [ - 9683.600804683338, - -262.2115845330496, - -4.880156841863224, - -0.17464675174747551, - -0.0074330478202839275, - -0.00036381149087244037, - -1.9152758424961318e-05, - -1.046638574526046e-06, - -5.883916149261033e-08, - -3.3733456532764434e-09, - -1.9517049596736228e-10, - -1.3558538089524747e-11, - -7.958078640513122e-13 - ], - "xmax": 307.4001004252891, - "xmin": 297.51296184207786 - }, - { - "coef": [ - 9319.718536661863, - -97.33516601811216, - -0.7375215168827234, - -0.010600517196691823, - -0.000185873446683121, - -3.7057710206737157e-06, - -7.87733123560554e-08, - -1.7366365737745812e-09, - -4.244874973098813e-11, - 3.7952249056386774e-12, - 1.889116980442124e-12, - 1.5724609854696452e-13, - -2.2737367544323206e-13 - ], - "xmax": 310.6958132863595, - "xmin": 307.4001004252891 - }, - { - "coef": [ - 9083.178710631044, - -140.049462256171, - -1.6279740312591429, - -0.035801094915612425, - -0.0009696963722234647, - -2.9626574203663347e-05, - -9.626300397064019e-07, - -3.2542587265505614e-08, - -1.1367973490099684e-09, - -3.554132157533608e-11, - 7.531492325215758e-13, - -1.662643934294504e-12, - -2.2737367544323206e-13 - ], - "xmax": 315.0900971011201, - "xmin": 310.6958132863595 - }, - { - "coef": [ - 8734.422993865177, - -210.9919727462296, - -4.094345441620972, - -0.15036045488598532, - -0.0068384532690247204, - -0.00034752581469049015, - -1.8766127978304792e-05, - -1.056165232986459e-06, - -6.130146219096795e-08, - -3.6370279498077247e-09, - -2.1820640416999663e-10, - -1.3487371106656832e-11, - -3.979039320256561e-13 - ], - "xmax": 320.9491421874675, - "xmin": 315.0900971011201 - }, - { - "coef": [ - 8337.772690962034, - -184.8620386657551, - -3.581393593385316, - -0.13145331722011935, - -0.005965378152724647, - -0.00030064168947622957, - -1.611068341996008e-05, - -9.003937278392923e-07, - -5.187610137374487e-08, - -3.053172200344302e-09, - -1.8144570651111745e-10, - -1.1480857102464955e-11, - -7.389644451905042e-13 - ], - "xmax": 325.343426002228, - "xmin": 320.9491421874675 - }, - { - "coef": [ - 8080.788927153794, - -68.9416513202978, - -0.5471264628156024, - -0.008219426655538776, - -0.00015219508357687628, - -3.123427897557487e-06, - -6.81686361673184e-08, - -1.5484528234099742e-09, - -3.9070178534672074e-11, - 3.258824652363026e-12, - 1.6297093696664636e-12, - -7.202146678935353e-13, - 5.684341886080802e-14 - ], - "xmax": 326.80818727381484, - "xmin": 325.343426002228 - }, - { - "coef": [ - 7912.90178786217, - -99.58335393763639, - -1.2208817227954105, - -0.0282963807636642, - -0.0008065333281584398, - -2.5456879485244944e-05, - -8.544237735630945e-07, - -2.988542830201328e-08, - -1.0792283145478317e-09, - -3.547112931261348e-11, - 9.10330645242209e-13, - -9.10330645242209e-13, - -4.547473508864641e-13 - ], - "xmax": 328.7612023025973, - "xmin": 326.80818727381484 - }, - { - "coef": [ - 7671.902515789695, - -142.856721439446, - -2.788997750250358, - -0.1025900032236695, - -0.004625643799043308, - -0.00023069599615331066, - -1.2227776890602007e-05, - -6.750626670804485e-07, - -3.8369760720859695e-08, - -2.2259900401258446e-09, - -1.2971492430376128e-10, - -7.0503414753428115e-12, - -2.8421709430404007e-13 - ], - "xmax": 331.2329869484001, - "xmin": 328.7612023025973 - }, - { - "coef": [ - 7473.248350690744, - -53.32081119781261, - -0.42609691866144955, - -0.0063870464227527195, - -0.00011702209534476422, - -2.3689912829650213e-06, - -5.092775907539823e-08, - -1.1389936116983666e-09, - -2.879758537807324e-11, - 3.218046890709635e-12, - 1.6704871313198542e-12, - -1.102052942711774e-12, - 0.0 - ], - "xmax": 332.05691516366767, - "xmin": 331.2329869484001 - }, - { - "coef": [ - 7343.365300825648, - -77.05827527800732, - -0.9499313633035211, - -0.02188813318041011, - -0.0006152748452035704, - -1.909408471928676e-05, - -6.289327115193094e-07, - -2.1553815345969823e-08, - -7.626835251079623e-10, - -2.3688331412455832e-11, - 7.235901926893946e-13, - -1.5193980567407068e-12, - -1.7053025658242404e-13 - ], - "xmax": 333.15548611735784, - "xmin": 332.05691516366767 - }, - { - "coef": [ - 7150.644486502284, - -117.03120750565387, - -2.4306953318713296, - -0.09375483721317297, - -0.004398135689480375, - -0.0002274553138519998, - -1.2474015302620261e-05, - -7.114277920784517e-07, - -4.1731136922622586e-08, - -2.4957714351913672e-09, - -1.5051708645468893e-10, - -1.0122415245954516e-11, - -8.526512829121202e-13 - ], - "xmax": 334.6202473889447, - "xmin": 333.15548611735784 - }, - { - "coef": [ - 6929.423090124219, - -103.75480619998454, - -2.173743867064857, - -0.08375635349050078, - -0.00390923301240712, - -0.00020076732145987207, - -1.0921835225807273e-05, - -6.174763462435201e-07, - -3.588907241338364e-08, - -2.1259871313212182e-09, - -1.2660387129488177e-10, - -9.365586620170994e-12, - -5.684341886080801e-13 - ], - "xmax": 335.71881834263485, - "xmin": 334.6202473889447 - }, - { - "coef": [ - 6784.67870089302, - -39.060015975742516, - -0.33726914009028836, - -0.005313428205763825, - -0.00010109902987979298, - -2.1137489878077384e-06, - -4.677443458207652e-08, - -1.073740617684069e-09, - -2.7657466162947164e-11, - 5.602219644953656e-12, - 1.3326774560649223e-12, - -4.288535236826939e-12, + 13134.038114625711, + -140.70260836828007, + -0.435989042698324, + -0.007832595161531404, + -6.087224799938059e-05, + -1.5317182404184573e-06, + -7.942830219064034e-09, + -2.9446329489337676e-10, + -4.403621564952252e-13, + 7.034198744348955e-12, + 3.652364001482952e-12, + -1.3786272470506314e-12, 1.1368683772161603e-13 ], - "xmax": 336.08500866053157, - "xmin": 335.71881834263485 + "xmax": 212.06855433284517, + "xmin": 202.18141574963386 }, { "coef": [ - 6689.188551021189, - -56.83042250087219, - -0.7609303211832648, - -0.018479991713137703, - -0.0005409149150191069, - -1.738139603642147e-05, - -5.908777447756753e-07, - -2.0858737139028974e-08, - -7.577918721968182e-10, - -2.4487258165621693e-11, - 1.7498906212984874e-12, - 2.7975828875661538e-12, - -1.0800249583553523e-12 - ], - "xmax": 336.57326241772716, - "xmin": 336.08500866053157 - }, - { - "coef": [ - 6521.294882733062, - -113.53207049936982, - -3.422522555340713, - -0.18493168626140044, - -0.01199648359715144, - -0.0008528802153550139, - -6.408980743077635e-05, - -4.998627680776477e-06, - -4.004281136651881e-07, - -3.2725786638107734e-08, - -2.7157439610928986e-09, - -2.2783564119518383e-10, - -1.9269918993813917e-11 - ], - "xmax": 337.3971906329948, - "xmin": 336.57326241772716 - }, - { - "coef": [ - 6359.3701232146095, - -45.37480762682938, - -0.6169056832732464, - -0.01482705314432899, - -0.000426073086630434, - -1.3395446073833998e-05, - -4.4473611758180856e-07, - -1.531119999239957e-08, - -5.435663962569999e-10, - -1.1793806013094434e-11, - 9.935564295409108e-13, - 3.706856231184817e-13, - 1.7053025658242404e-13 - ], - "xmax": 337.67183337141734, - "xmin": 337.3971906329948 - }, - { - "coef": [ - 6245.049156309048, - -69.85543078431557, - -1.60282672949767, - -0.0643055841608289, - -0.003075352757710284, - -0.00016071131779840948, - -8.863142161721734e-06, - -5.068454898312131e-07, - -2.97524051754943e-08, - -1.7727275510343823e-09, - -1.0674325017937396e-10, - -1.3537424130095796e-11, - -4.547473508864641e-13 - ], - "xmax": 338.03802368931406, - "xmin": 337.67183337141734 - }, - { - "coef": [ - 6089.251665270971, - -86.95641397122081, - -2.8336606488930918, - -0.15877717292824878, - -0.010559800530577134, - -0.0007660820972526076, - -5.859875795043399e-05, - -4.645254430457956e-06, - -3.7783876426464927e-07, - -3.133267024759621e-08, - -2.6352515610568344e-09, - -2.2920200217700292e-10, - -2.1714186004828662e-11 - ], - "xmax": 338.4042140072107, - "xmin": 338.03802368931406 - }, - { - "coef": [ - 5964.526183027529, - -35.27267814924, - -0.5200526758376794, - -0.01298708000281172, - -0.0003835780502084593, - -1.2340451245247725e-05, - -4.18295759434211e-07, - -1.4686360057287444e-08, - -5.310779191017483e-10, - -2.4168596330624388e-11, - 4.648906656674463e-13, - 5.0144745496629e-13, - 5.684341886080802e-14 - ], - "xmax": 338.52627744650965, - "xmin": 338.4042140072107 - }, - { - "coef": [ - 5859.311173582481, - -71.65218431235039, - -2.365896309314649, - -0.13054085184737219, - -0.008493286475611653, - -0.0006012306568844405, - -4.481753759833285e-05, - -3.459918418543539e-06, - -2.739746766156074e-07, - -2.2113824656999308e-08, - -1.811911402027951e-09, - -1.6078260611753043e-10, - -1.3386625141720288e-11 - ], - "xmax": 338.7322595003265, - "xmin": 338.52627744650965 - }, - { - "coef": [ - 5756.4618516073515, - -29.111338909449664, - -0.429953999461312, - -0.010462841100881096, - -0.0002993567145573174, - -9.309308146756413e-06, - -3.047272308244633e-07, - -1.0334182578409562e-08, - -3.614751144400732e-10, - -9.826097558724729e-12, - 1.0153676352994861e-12, - -2.9480438765669586e-12, - -1.4210854715202004e-13 - ], - "xmax": 338.8009201849321, - "xmin": 338.7322595003265 - }, - { - "coef": [ - 5682.638975403525, - -45.34836192162591, - -1.1206814710452477, - -0.045162678818780964, - -0.0021357563169771875, - -0.00010971756638585984, - -5.9324928997392846e-06, - -3.3221847392096353e-07, - -1.908567806995307e-08, - -1.115108751125439e-09, - -6.092474168581791e-11, - -9.674784539305648e-12, - -5.030642569181509e-12 - ], - "xmax": 338.8924677644063, - "xmin": 338.8009201849321 - }, - { - "coef": [ - 5580.694939658322, - -57.30282203962343, - -1.9783734686114443, - -0.10979549748616789, - -0.007134976090249287, - -0.0005035767227283636, - -3.742625506932515e-05, - -2.8829879212630947e-06, - -2.28057679426882e-07, - -1.841470263255523e-08, - -1.5056187598640542e-09, - -1.339159703382314e-10, - -1.693933882052079e-11 - ], - "xmax": 338.9840153438805, - "xmin": 338.8924677644063 - }, - { - "coef": [ - 5498.171328979228, - -23.47664374872999, - -0.36024632219051206, - -0.008786289432230433, - -0.0002506798950955721, - -7.77284281434783e-06, - -2.5409889963105496e-07, - -8.622003179487629e-09, - -2.953081543016283e-10, - -7.553581388756806e-12, - 7.610424807617614e-12, - -2.3640268926365476e-11, - -7.901235221652314e-12 - ], - "xmax": 339.01453120370525, - "xmin": 338.9840153438805 - }, - { - "coef": [ - 5427.905401997527, - -47.95413450898268, - -1.6148678402441938, - -0.08571389674084957, - -0.00532487209790771, - -0.00036017291170582164, - -2.573767989771161e-05, - -1.912727434946168e-06, - -1.46449571739618e-07, - -1.1477759916919711e-08, - -9.184823379887181e-10, - -1.1032669997304612e-10, - -8.554934538551606e-12 - ], - "xmax": 339.0660267171595, - "xmin": 339.01453120370525 - }, - { - "coef": [ - 5359.00724416804, - -19.518395588508454, - -0.2871062718112837, - -0.006612970533366762, - -0.0001786712985432937, - -5.272918555703198e-06, - -1.6491672858001207e-07, - -5.367793902676698e-09, - -1.8268173198690054e-10, - -3.707838457688956e-12, - 1.0930411900917871e-12, - -2.7415003370552193e-12, - -1.9895196601282805e-13 - ], - "xmax": 339.0831918883109, - "xmin": 339.0660267171595 - }, - { - "coef": [ - 5309.565274774904, - -30.33458869487975, - -0.7312920396373159, - -0.027538097311429442, - -0.00122072740305732, - -5.933161889395413e-05, - -3.066067910206781e-06, - -1.6566650054008598e-07, - -9.247634191721297e-09, - -5.272738024209707e-10, - -1.5467160862024295e-11, - 3.576026139533276e-11, - -1.071498445526231e-11 - ], - "xmax": 339.10607878317944, - "xmin": 339.0831918883109 - }, - { - "coef": [ - 5241.682212279402, - -37.96640419231717, - -1.2375635348225706, - -0.06310073943133358, - -0.003819390531518985, - -0.0002553325635538558, - -1.824506596010999e-05, - -1.3676982596907484e-06, - -1.062509660923961e-07, - -8.482188440190827e-09, - -6.726146975988863e-10, - -1.0472666851443571e-11, - -1.7422507880837657e-11 - ], - "xmax": 339.12896567804796, - "xmin": 339.10607878317944 - }, - { - "coef": [ - 5187.281626890861, - -15.340869065629244, - -0.21611640744214866, - -0.004793635664208862, - -0.0001274775281723373, - -3.7702022785856593e-06, - -1.196597787634324e-07, - -4.010184395613027e-09, - -1.3898727729393269e-10, - 5.1789472761453185e-11, - 3.3486435335305858e-12, - 2.080980948231282e-11, - 5.115907697472721e-13 - ], - "xmax": 339.1365946430042, - "xmin": 339.12896567804796 - }, - { - "coef": [ - 5141.83363785823, - -30.772178931465074, - -0.9282847223923959, - -0.04462723966860906, - -0.002601523941455499, - -0.00016972492147217838, - -1.1914524866798632e-05, - -8.796800393871368e-07, - -6.735740996318182e-08, - -5.2966079498279085e-09, - -4.2445478483697514e-10, - -3.3191580411390204e-11, - -2.7284841053187847e-12 - ], - "xmax": 339.14946852136774, - "xmin": 339.1365946430042 - }, - { - "coef": [ - 5097.992462916433, - -12.24810753555027, - -0.15803065516087614, - -0.0033055090670994487, - -8.483198121681008e-05, - -2.4483022637851654e-06, - -7.611004562741701e-08, - -2.487974909029694e-09, - -8.600878382541444e-11, - -3.9321284301374365e-13, - 7.911167750393997e-13, - -9.601846698464642e-12, - -1.9895196601282805e-13 - ], - "xmax": 339.1537598141556, - "xmin": 339.14946852136774 - }, - { - "coef": [ - 5067.29778559586, - -18.662056780194135, - -0.3897880680436712, - -0.013423593388566406, - -0.0005721883421612802, - -2.7494530471176454e-05, - -1.4232157211153624e-06, - -7.739198808854258e-08, - -4.332249954991984e-09, - -2.4722639869129214e-10, - 1.7124239142741297e-11, - -7.176640842099894e-12, - -3.1235458664014004e-11 - ], - "xmax": 339.1594815378727, - "xmin": 339.1537598141556 - }, - { - "coef": [ - 5026.197025588214, - -22.639550738291913, - -0.6330164100768956, - -0.030026284460457332, - -0.001781566575066193, - -0.00011933021937252916, - -8.602467350868485e-06, - -6.512057622391676e-07, - -5.1027375178184215e-08, - -4.1012482658498074e-09, - -3.4208809966183385e-10, - -1.4790217091833126e-10, - -9.094947017729282e-12 - ], - "xmax": 339.16520326158985, - "xmin": 339.1594815378727 - }, - { - "coef": [ - 4994.095892651513, - -8.90197006376405, - -0.10754342879591114, - -0.0022607292101455524, - -5.979532216280194e-05, - -1.7843254298780323e-06, - -5.7249398753532567e-08, - -1.9183475044938875e-09, - -6.889841887996069e-11, - 1.1788205838298464e-13, - 1.5874205074412558e-12, - 1.6886690622321348e-11, - 2.8421709430404007e-13 - ], - "xmax": 339.1671105028289, - "xmin": 339.16520326158985 - }, - { - "coef": [ - 4968.090520768023, - -17.4273728358209, - -0.4537293628049538, - -0.02104929797672683, - -0.0012327594030280325, - -8.138389085432017e-05, - -5.7714939926173565e-06, - -4.2934595556097034e-07, - -3.298578533041597e-08, - -2.6003549263665623e-09, - -1.6268997761959368e-10, - -1.180596681339371e-10, - -5.7838178690872155e-11 - ], - "xmax": 339.17032897241984, - "xmin": 339.1671105028289 - }, - { - "coef": [ - 4943.485338110661, - -6.7765473454260015, - -0.07636459310250546, - -0.001567540486894197, - -4.066339490707647e-05, - -1.1874622371779394e-06, - -3.733927103708387e-08, - -1.3331258033273725e-09, - 1.7712247469414265e-11, - 1.7311110964631824e-10, - 6.557440615021461e-11, - 2.9865694117082044e-11, - -5.911715561524034e-11 - ], - "xmax": 339.1714017956168, - "xmin": 339.17032897241984 - }, - { - "coef": [ - 4926.653166382333, - -10.159062214243662, - -0.18755543796929344, - -0.006407449003533254, - -0.0002766342565072976, - -1.343226263457624e-05, - -6.997732802504616e-07, - -3.836039837339185e-08, - -2.165491825813755e-09, - -1.2319474777895807e-10, - -1.3399987743563575e-11, - -1.9123632015534527e-10, - -7.077005648170598e-12 - ], - "xmax": 339.17283222654606, - "xmin": 339.1714017956168 - }, - { - "coef": [ - 4904.519206866648, - -12.0713080373171, - -0.30433358034840696, - -0.01448474924300171, - -0.0008703995183850617, - -5.8756096370866004e-05, - -4.25372322752591e-06, - -3.2284365260639413e-07, - -2.532405006203965e-08, - -1.8095306535595876e-09, - -1.5048727217993364e-10, - 7.050858184277677e-11, - 3.211653165635653e-12 - ], - "xmax": 339.17426265747537, - "xmin": 339.17283222654606 - }, - { - "coef": [ - 4887.502809409448, - -4.676107466994757, - -0.05184132201858336, - -0.001099737483548431, - -2.9407721308309785e-05, - -8.826240560823403e-07, - -2.8397573608026948e-08, - -8.904295258157746e-10, - -3.344656092893814e-11, - 1.3300292725816124e-12, - 1.1710811572939403e-12, - -2.1374192779276765e-12, + 12800.076816340052, + -193.78069211427845, + -0.9876940722081745, + -0.022116557118746563, + -0.0003164670320675989, + -7.810012160839265e-06, + -7.515820114828256e-08, + -2.775631535185387e-10, + -2.10646727663673e-12, + -1.0171711197297801e-11, + 1.7588852058982152e-12, + -8.493905041252869e-13, 0.0 ], - "xmax": 339.1747394677851, - "xmin": 339.17426265747537 + "xmax": 225.2514057771269, + "xmin": 212.06855433284517 }, { "coef": [ - 4870.65993331868, - -12.521661489148658, - -0.43489777740170044, - -0.029304640839101767, - -0.002485865577951398, - -0.00023656881946120084, - -2.4135121505576903e-05, - -2.580408776640611e-06, - -2.851735832049642e-07, - -3.202463115630526e-08, - -3.6061880277018628e-09, - -3.9337176676344987e-10, - -1.5853629520279355e-10 + 12334.720273746987, + -272.89476459926743, + -2.3984214621718647, + -0.07101187262380265, + -0.0016879187246384212, + -5.014334330482555e-05, + -1.8906236898878585e-06, + -1.6071409774625257e-07, + -6.957389614823715e-09, + 6.072976070451303e-10, + 7.709715603899823e-11, + -4.11020622172074e-12, + -1.0231815394945443e-12 ], - "xmax": 339.1758122909821, - "xmin": 339.1747394677851 + "xmax": 242.8285410361692, + "xmin": 225.2514057771269 }, { "coef": [ - 4852.56272021725, - -5.197157821031696, - -0.09159231226872912, - -0.0031652531138360784, - -0.00013739399353929977, - -6.6854355663592945e-06, - -3.486576775146453e-07, - -1.8688426243236484e-08, - -1.0792705695415273e-09, - -4.4964686755762585e-10, - -1.7833409153659256e-11, - -4.873023433234693e-11, - -1.6484591469634324e-12 + 11766.655501212355, + -296.0502613199976, + -3.4581821064803258, + -0.11013506453683052, + -0.0035220915599617642, + -0.00014764170621704546, + -5.371007905223797e-06, + -2.1338433116051105e-08, + 1.0495389957383431e-09, + -1.345352147489988e-09, + -5.7657116832475454e-11, + 5.2474846428104644e-12, + -1.1368683772161603e-13 ], - "xmax": 339.17616989871436, - "xmin": 339.1758122909821 + "xmax": 260.4056762952115, + "xmin": 242.8285410361692 }, { "coef": [ - 4839.062369105453, - -8.48609954714667, - -0.2966935673665827, - -0.020507188952797465, - -0.001778547451374065, - -0.00017289906739992647, - -1.8014379258742786e-05, + 11361.933534646005, + -105.59422230348103, + -0.5003369676599201, + -0.005901471575142152, + -7.484982826704952e-05, + -1.0022787213004626e-06, + -1.064974336048226e-08, + -1.6835505659355546e-10, + -9.110097089887172e-12, + 5.358431445073842e-12, + 3.2817682217689762e-12, + -1.1217183050582717e-12, + -4.547473508864641e-13 + ], + "xmax": 266.26472138155896, + "xmin": 260.4056762952115 + }, + { + "coef": [ + 10916.328152151931, + -345.3959818030354, + -6.128308852587693, + -0.2473793974909171, + -0.010661565077171493, + -0.0004779984661667336, + -2.4337844152417764e-05, + -1.5247681944097526e-06, + -8.381324785974401e-08, + -4.249372447283822e-09, + -3.0173904038791074e-10, + -2.1245265579200403e-11, + -9.094947017729282e-13 + ], + "xmax": 283.84185664060124, + "xmin": 266.26472138155896 + }, + { + "coef": [ + 10437.682876065495, + -127.8050470154328, + -0.9572997404793678, + -0.014943967439183263, + -0.00025554841705531305, + -4.930760372128689e-06, + -1.083798334251601e-07, + -2.4669934033322452e-09, + -6.003762554383593e-11, + 3.648954033914373e-12, + 2.9448825539393565e-12, + -3.3008528634218793e-13, + -3.410605131648481e-13 + ], + "xmax": 289.7009017269487, + "xmin": 283.84185664060124 + }, + { + "coef": [ + 10127.150228025774, + -183.8527094951976, + -2.1463459591891576, + -0.05001667713530809, + -0.0013224716359543592, + -4.029257614932509e-05, + -1.3531687370842857e-06, + -4.6978006351185036e-08, + -1.681438122557003e-09, + -5.6606252531062736e-11, + 1.0389418341956885e-13, + -6.723283720276489e-13, + -1.1368683772161603e-13 + ], + "xmax": 297.5129618420786, + "xmin": 289.7009017269487 + }, + { + "coef": [ + 9683.600804683301, + -262.2115845330538, + -4.8801568418633, + -0.1746467517475134, + -0.007433047819791284, + -0.0003638114911377097, + -1.9152758841813055e-05, + -1.0466387261084962e-06, + -5.883923728383548e-08, + -3.3732698620512955e-09, + -1.950189135170668e-10, + -1.3482746864377004e-11, + -6.252776074688882e-13 + ], + "xmax": 307.40010042528985, + "xmin": 297.5129618420786 + }, + { + "coef": [ + 9319.718536661814, + -97.33516601811414, + -0.7375215168822308, + -0.010600517196047597, + -0.0001858734457357307, + -3.7057699217009513e-06, + -7.877429764198233e-08, + -1.7374702772512062e-09, + -4.2638227793857485e-11, + 2.734147753570261e-12, + 2.1543862684592284e-12, + -1.017517891243068e-12, + -3.979039320256561e-13 + ], + "xmax": 310.6958132863603, + "xmin": 307.40010042528985 + }, + { + "coef": [ + 9083.178710630993, + -140.0494622561735, + -1.6279740312593702, + -0.035801094915271364, + -0.0009696963722234647, + -2.962657408997651e-05, + -9.626296986458887e-07, + -3.254247357866789e-08, + -1.13691103584769e-09, + -3.5655008413057696e-11, + 9.80522907964808e-13, + -1.6626439342945042e-12, + -2.2737367544323206e-13 + ], + "xmax": 315.0900971011209, + "xmin": 310.6958132863603 + }, + { + "coef": [ + 8734.422993865119, + -210.99197274623643, + -4.094345441620745, + -0.1503604548851895, + -0.006838453268569973, + -0.00034752581469049015, + -1.876612866042582e-05, + -1.0561670519758626e-06, + -6.130112113045479e-08, + -3.6382785050226625e-09, + -2.1763796998138855e-10, + -1.3601057944378448e-11, + -1.1368683772161603e-12 + ], + "xmax": 320.94914218746834, + "xmin": 315.0900971011209 + }, + { + "coef": [ + 8337.772690961956, + -184.8620386657627, + -3.5813935933854677, + -0.13145331721951303, + -0.005965378151966735, + -0.00030064169102994966, + -1.6110684026289878e-05, + -9.003951678725701e-07, + -5.1875911895681996e-08, + -3.0526795573808413e-09, + -1.8125622844824808e-10, + -1.2466143029385628e-11, + -1.3642420526593924e-12 + ], + "xmax": 325.3434260022289, + "xmin": 320.94914218746834 + }, + { + "coef": [ + 8080.78892715371, + -68.94165132029998, + -0.5471264628155645, + -0.008219426655462986, + -0.00015219508376635433, + -3.123428049139937e-06, + -6.816882564538126e-08, + -1.5482633453471047e-09, + -3.9032282922098204e-11, + 3.2209290397891532e-12, + 2.008665495405184e-12, + -9.854839559106397e-13, + 0.0 + ], + "xmax": 326.80818727381575, + "xmin": 325.3434260022289 + }, + { + "coef": [ + 7912.901787862079, + -99.58335393764246, + -1.2208817227953728, + -0.028296380763361037, + -0.0008065333278931704, + -2.545687940945372e-05, + -8.544236219806442e-07, + -2.9885125137112693e-08, + -1.0789630452598145e-09, + -3.562271176290897e-11, + 1.0619130955376973e-12, + -8.345394200944652e-13, + -3.410605131648481e-13 + ], + "xmax": 328.76120230259824, + "xmin": 326.80818727381575 + }, + { + "coef": [ + 7671.902515789583, + -142.85672143946002, + -2.788997750251078, + -0.10259000322499584, + -0.004625643798285395, + -0.0002306959963427887, + -1.2227778065365997e-05, + -6.750619470638097e-07, + -3.8368889121770494e-08, + -2.224360528785168e-09, + -1.2918438572772706e-10, + -8.490374753149948e-12, + -1.1368683772161603e-12 + ], + "xmax": 331.23298694840105, + "xmin": 328.76120230259824 + }, + { + "coef": [ + 7473.24835069061, + -53.32081119782307, + -0.42609691866156324, + -0.0063870464227527195, + -0.00011702209523107738, + -2.3689878723598896e-06, + -5.0927986449073674e-08, + -1.137401995970264e-09, + -2.8683898540351625e-11, + 2.9906732152664026e-12, + 2.0115476444847027e-12, + 7.169364608340818e-13, + 1.1368683772161603e-13 + ], + "xmax": 332.0569151636687, + "xmin": 331.23298694840105 + }, + { + "coef": [ + 7343.365300825505, + -77.058275278011, + -0.9499313633034833, + -0.021888133180334318, + -0.0006152748452793617, + -1.9094087030919124e-05, + -6.289327873105346e-07, + -2.1556013291499105e-08, + -7.628730031708316e-10, + -2.3498853349586473e-11, + 6.477989675416512e-13, + 7.164430851177411e-13, + -3.410605131648481e-13 + ], + "xmax": 333.1554861173588, + "xmin": 332.0569151636687 + }, + { + "coef": [ + 7150.644486502119, + -117.03120750566801, + -2.4306953318717466, + -0.09375483721332456, + -0.004398135689215105, + -0.00022745531411726908, + -1.2474015378411485e-05, + -7.114277162872266e-07, + -4.173087165333457e-08, + -2.4960367044793846e-09, + -1.5036550400439345e-10, + -9.932937183085157e-12, + -4.547473508864641e-13 + ], + "xmax": 334.6202473889457, + "xmin": 333.1554861173588 + }, + { + "coef": [ + 6929.423090124025, + -103.7548062000009, + -2.1737438670655007, + -0.08375635349019761, + -0.003909233012369224, + -0.00020076732138408083, + -1.0921835415285334e-05, + -6.174766115128081e-07, + -3.588903451777106e-08, + -2.126025026933792e-09, + -1.2667966252002952e-10, + -9.176108557301635e-12, + -5.115907697472721e-13 + ], + "xmax": 335.71881834263587, + "xmin": 334.6202473889457 + }, + { + "coef": [ + 6784.678700892801, + -39.060015975750964, + -0.33726914009013675, + -0.0053134282058017205, + -0.0001010990299555842, + -2.113749139390189e-06, + -4.6774737746977113e-08, + -1.0738922001343645e-09, + -2.7505883712651675e-11, + 5.905384545544631e-12, + 1.4842599063604112e-12, + -4.09905717395758e-12, + 5.684341886080802e-14 + ], + "xmax": 336.0850086605326, + "xmin": 335.71881834263587 + }, + { + "coef": [ + 6689.188551020951, + -56.830422500884865, + -0.7609303211839469, + -0.01847999171325139, + -0.0005409149152464806, + -1.7381396263795145e-05, + -5.908776310888375e-07, + -2.0858964512704418e-08, + -7.579055590345398e-10, + -2.460094500334331e-11, + 1.8635774590201042e-12, + 3.252330238452617e-12, + -1.0231815394945443e-12 + ], + "xmax": 336.5732624177282, + "xmin": 336.0850086605326 + }, + { + "coef": [ + 6521.294882732778, + -113.53207049940418, + -3.422522555343517, + -0.18493168626189307, + -0.011996483596886171, + -0.0008528802153929094, + -6.408980784762808e-05, + -4.998628059732602e-06, + -4.004281894564132e-07, + -3.272616559423347e-08, + -2.7160471259934893e-09, + -2.2764616313231447e-10, + -1.944044925039634e-11 + ], + "xmax": 337.39719063299583, + "xmin": 336.5732624177282 + }, + { + "coef": [ + 6359.370123214272, + -45.37480762684804, + -0.6169056832736253, + -0.014827053144632155, + -0.00042607308655464275, + -1.3395446035938385e-05, + -4.4473626916425887e-07, + -1.5311048409949275e-08, + -5.436042918695737e-10, + -1.1869597238242179e-11, + 8.419739792454241e-13, + 2.9489439797073616e-13, + -1.7053025658242404e-13 + ], + "xmax": 337.67183337141836, + "xmin": 337.39719063299583 + }, + { + "coef": [ + 6245.049156308658, + -69.85543078435155, + -1.60282672949983, + -0.06430558416060153, + -0.0030753527573692233, + -0.00016071131768472264, + -8.863142275408571e-06, + -5.068456035180509e-07, + -2.9752632549169742e-08, + -1.772841237872104e-09, + -1.0697062385481719e-10, + -1.3537424130095797e-11, + -8.526512829121202e-13 + ], + "xmax": 338.0380236893151, + "xmin": 337.67183337141836 + }, + { + "coef": [ + 6089.251665270482, + -86.95641397128485, + -2.8336606488989657, + -0.15877717292862775, + -0.010559800530311865, + -0.0007660820969494427, + -5.85987576851647e-05, + -4.645254695727244e-06, + -3.778388400558744e-07, + -3.133282183004651e-08, + -2.6352136654442606e-09, + -2.292398977895768e-10, + -2.177102942368947e-11 + ], + "xmax": 338.40421400721175, + "xmin": 338.0380236893151 + }, + { + "coef": [ + 5964.526183026937, + -35.27267814927578, + -0.5200526758391952, + -0.012987080002716981, + -0.00038357805001898123, + -1.2340451264195532e-05, + -4.182959110166613e-07, + -1.4686435848512591e-08, + -5.313431883897654e-10, + -2.4187544136911326e-11, + 5.975253096760008e-13, + 1.9828255437531131e-13, + -5.684341886080802e-14 + ], + "xmax": 338.5262774465107, + "xmin": 338.40421400721175 + }, + { + "coef": [ + 5859.311173581765, + -71.65218431244564, + -2.365896309322796, + -0.13054085184814904, + -0.008493286475630602, + -0.000601230656751806, + -4.481753778781091e-05, + -3.4599187974996647e-06, + -2.7397469556341365e-07, + -2.2113805709193022e-08, + -1.8121008800908203e-09, + -1.6082050173010432e-10, + -1.3073986337985843e-11 + ], + "xmax": 338.73225950032753, + "xmin": 338.5262774465107 + }, + { + "coef": [ + 5756.461851606483, + -29.11133890949972, + -0.4299539994630931, + -0.010462841100634774, + -0.0002993567145194218, + -9.309308014121768e-06, + -3.0472753398936386e-07, + -1.0334106787184416e-08, + -3.6126668857091694e-10, + -9.863993171298604e-12, + 9.395764101517458e-13, + -3.3270000023056826e-12, + -1.1368683772161603e-13 + ], + "xmax": 338.80092018493315, + "xmin": 338.73225950032753 + }, + { + "coef": [ + 5682.638975402509, + -45.348361921725726, + -1.1206814710505342, + -0.045162678818951495, + -0.002135756317204561, + -0.000109717566272173, + -5.9324928997392846e-06, + -3.322185307643824e-07, + -1.9086075973885095e-08, + -1.1153361248008823e-09, + -6.069736801037467e-11, + -9.845314795888076e-12, + -5.258016244624741e-12 + ], + "xmax": 338.89246776440734, + "xmin": 338.80092018493315 + }, + { + "coef": [ + 5580.694939657034, + -57.30282203980118, + -1.978373468626792, + -0.10979549748730476, + -0.007134976090419817, + -0.0005035767228420505, + -3.7426255183011986e-05, + -2.8829879781065135e-06, + -2.280575088966254e-07, + -1.841464578913637e-08, + -1.5056187598640542e-09, + -1.3385912691937058e-10, + -1.6854073692229576e-11 + ], + "xmax": 338.98401534388154, + "xmin": 338.89246776440734 + }, + { + "coef": [ + 5498.171328977651, + -23.476643748827517, + -0.3602463221937142, + -0.008786289432211486, + -0.0002506798950008331, + -7.772842795400024e-06, + -2.5409880489202356e-07, + -8.621984231681343e-09, + -2.952702586890544e-10, + -7.47779016360907e-12, + 7.648320420191494e-12, + -2.3564477701217736e-11, + -8.071765478234738e-12 + ], + "xmax": 339.01453120370627, + "xmin": 338.98401534388154 + }, + { + "coef": [ + 5427.905401995611, + -47.95413450924136, + -1.6148678402649037, + -0.08571389674242223, + -0.005324872098210875, + -0.00036017291191424753, + -2.5737680030346254e-05, + -1.9127275296851994e-06, + -1.4644953384400543e-07, + -1.1478082029626589e-08, + -9.185581292138659e-10, + -1.103077521667592e-10, + -8.270717444247566e-12 + ], + "xmax": 339.0660267171605, + "xmin": 339.01453120370627 + }, + { + "coef": [ + 5359.007244165712, + -19.518395588645653, + -0.28710627181596377, + -0.006612970533347814, + -0.00017867129856224148, + -5.272918423068554e-06, + -1.649168612146561e-07, + -5.367774954870411e-09, + -1.8292805346863069e-10, + -3.518360394819606e-12, + 1.0740933838048613e-12, + -2.8362393684899097e-12, + -1.4210854715202004e-13 + ], + "xmax": 339.08319188831194, + "xmin": 339.0660267171605 + }, + { + "coef": [ + 5309.565274772183, + -30.334588695141363, + -0.7312920396516215, + -0.027538097312016827, + -0.0012207274030952156, + -5.9331619026588776e-05, + -3.0660679481023935e-06, + -1.6566663317473e-07, + -9.247331026820706e-09, + -5.2746328048384e-10, + -1.539136963687654e-11, + 3.6082374102210657e-11, + -1.0857093002414331e-11 + ], + "xmax": 339.10607878318046, + "xmin": 339.08319188831194 + }, + { + "coef": [ + 5241.6822122759895, + -37.966404192762674, + -1.2375635348563736, + -0.06310073943402418, + -0.003819390531613724, + -0.00025533256357280365, + -1.8245065827475346e-05, + -1.3676981649517169e-06, + -1.0625089030117094e-07, + -8.482321074834836e-09, + -6.725389063737386e-10, + -1.0377927820008904e-11, + -1.7422507880837657e-11 + ], + "xmax": 339.128965678049, + "xmin": 339.10607878318046 + }, + { + "coef": [ + 5187.281626886742, + -15.340869065861506, + -0.21611640744959515, + -0.004793635664095175, + -0.00012747752805865046, + -3.7702022217422404e-06, + -1.196597787634324e-07, + -4.010525456126192e-09, + -1.3887359045621104e-10, + 5.161894250487075e-11, + 3.121269858087372e-12, + 2.052559238800876e-11, + 4.831690603168681e-13 + ], + "xmax": 339.1365946430052, + "xmin": 339.128965678049 + }, + { + "coef": [ + 5141.833637853319, + -30.77217893205831, + -0.9282847224350663, + -0.04462723967152703, + -0.002601523941322865, + -0.00016972492171849984, + -1.1914525188911338e-05, + -8.796798878046865e-07, + -6.735722048511896e-08, + -5.296740584471917e-09, + -4.2443583703068817e-10, + -3.3096841379955546e-11, + -2.7000623958883807e-12 + ], + "xmax": 339.14946852136876, + "xmin": 339.1365946430052 + }, + { + "coef": [ + 5097.992462910588, + -12.248107535852052, + -0.15803065517008477, + -0.0033055090674405092, + -8.483198115996666e-05, + -2.4483026048456786e-06, + -7.611004562741701e-08, + -2.4876338485165293e-09, + -8.59519404065536e-11, + -5.637430995961933e-13, + 9.616470316218495e-13, + -9.374473023021436e-12, + -2.2737367544323206e-13 + ], + "xmax": 339.1537598141566, + "xmin": 339.14946852136876 + }, + { + "coef": [ + 5067.2977855891695, + -18.662056780753286, + -0.3897880680726803, + -0.013423593389854856, + -0.0005721883420665411, + -2.7494530622758902e-05, + -1.4232157969065875e-06, + -7.739213967099288e-08, + -4.332155215960549e-09, + -2.471506074661444e-10, + 1.6877917661011156e-11, + -7.441910130117027e-12, + -3.1093350116861984e-11 + ], + "xmax": 339.1594815378737, + "xmin": 339.1537598141566 + }, + { + "coef": [ + 5026.197025580085, + -22.639550739202715, + -0.6330164101422655, + -0.030026284465971144, + -0.001781566575464097, + -0.00011933021914515548, + -8.602467464555322e-06, + -6.512055917089111e-07, + -5.102720464792763e-08, + -4.101305109268668e-09, + -3.422586299184162e-10, + -1.4767479724288806e-10, + -9.15179043659009e-12 + ], + "xmax": 339.1652032615909, + "xmin": 339.1594815378737 + }, + { + "coef": [ + 4994.095892641954, + -8.901970064225619, + -0.10754342881046305, + -0.0022607292107139866, + -5.9795322049115104e-05, + -1.7843256572517077e-06, + -5.7249398753532567e-08, + -1.9182906610750267e-09, + -6.850051494793498e-11, + 4.589425715477906e-13, + 1.473733669719682e-12, + 1.6829847203460498e-11, + 4.547473508864641e-13 + ], + "xmax": 339.1671105028299, + "xmin": 339.1652032615909 + }, + { + "coef": [ + 4968.090520757608, + -17.42737283623398, + -0.4537293628965854, + -0.021049297986162837, + -0.0012327594606104158, + -8.13840042569408e-05, + -5.77139400504358e-06, + -4.292754128781641e-07, + -3.303364748909677e-08, + -2.6056982077394782e-09, + -2.1447433220178976e-10, + -1.2732514540824884e-10, + -7.219114195322618e-12 + ], + "xmax": 339.17032897242075, + "xmin": 339.1671105028299 + }, + { + "coef": [ + 4943.4853380991635, + -6.776547345944319, + -0.0763645931181753, + -0.0015675404877089525, + -4.06633950018155e-05, + -1.1874621424389079e-06, + -3.733919524585872e-08, + -1.3329173774582164e-09, + 1.7958568951144483e-11, + 1.7297847500230963e-10, + 6.536598028105836e-11, + 2.973305947307344e-11, + -5.908873390580993e-11 + ], + "xmax": 339.1714017956177, + "xmin": 339.17032897242075 + }, + { + "coef": [ + 4926.653166369381, + -10.159062215461702, + -0.18755543803528865, + -0.0064074491974829995, + -0.0002766342661138354, + -1.3432332836198533e-05, + -6.99773109720205e-07, + -3.82904241247742e-08, + -2.155998974864e-09, + 6.808335668766083e-11, + 3.4256642392356525e-12, + 7.007287634778911e-11, + 2.6716406864579767e-12 + ], + "xmax": 339.17283222654703, + "xmin": 339.1714017956177 + }, + { + "coef": [ + 4904.51920685028, + -12.071308038971699, + -0.30433358046647074, + -0.014484749252778779, + -0.0008703995193513998, + -5.875609648455284e-05, + -4.253723170682491e-06, + -3.2284348207613754e-07, + -2.532399321862079e-08, + -1.8096443403973092e-09, + -1.5048727217993357e-10, + 7.05085818427767e-11, + 3.126388037344441e-12 + ], + "xmax": 339.17426265747633, + "xmin": 339.17283222654703 + }, + { + "coef": [ + 4887.502809391596, + -4.676107467787134, + -0.05184132204367026, + -0.0010997374844958212, + -2.940772138410101e-05, + -8.826239802911151e-07, + -2.8397706242670955e-08, + -8.902400477529053e-10, + -3.352235215408581e-11, + 1.2921336600076614e-12, + 1.1521333510070833e-12, + -2.1184714716408195e-12, + -5.684341886080802e-14 + ], + "xmax": 339.1747394677861, + "xmin": 339.17426265747633 + }, + { + "coef": [ + 4870.659933295962, + -12.521661492318227, + -0.4348977777226005, + -0.029304640875292078, + -0.002485865582233602, + -0.00023656882012437405, + -2.413512186558522e-05, + -2.580408757692805e-06, + -2.8517343162251396e-07, + -3.202444167824239e-08, + -3.6063775057647323e-09, + -3.9335281895716305e-10, + -1.5862156033108477e-10 + ], + "xmax": 339.17581229098306, + "xmin": 339.1747394677861 + }, + { + "coef": [ + 4852.562720187284, + -5.197157824088337, + -0.09159231228765798, + -0.003165253503156654, + -0.00013739388980006035, + -6.68599814567576e-06, + -3.489620740226449e-07, + -1.8964401041805707e-08, + -9.37218865808368e-10, + -4.998078954728483e-11, + 1.376901848495116e-10, + 6.64913756985108e-11, + -1.3505996321327984e-10 + ], + "xmax": 339.1761698987154, + "xmin": 339.17581229098306 + }, + { + "coef": [ + 4839.062369068764, + -8.486099552302653, + -0.29669356790290036, + -0.020507189014472575, + -0.0017785474590479265, + -0.00017289906830942117, + -1.801437897452569e-05, -1.966502998443963e-06, - -2.2203030280660962e-07, - -2.5709744336842495e-08, + -2.220301891197719e-07, + -2.5709914867099077e-08, -3.0369957626076136e-09, - -3.7332515194656314e-10, - -4.447997525858227e-11 + -3.732114651088416e-10, + -4.459366209630389e-11 ], - "xmax": 339.1766467090241, - "xmin": 339.17616989871436 + "xmax": 339.17664670902514, + "xmin": 339.1761698987154 }, { "coef": [ - 4824.148581380811, - -6.3102026822561434, - -0.21514539175041475, - -0.014591267586407653, - -0.001240013947611928, - -0.00011809031854797047, - -1.2052651587723289e-05, - -1.2892666029669047e-06, - -1.4233211571502098e-07, - -1.613159044188731e-08, - -1.595541320625417e-09, - 5.118783834629729e-10, - -1.9801404960162472e-10 + 4824.148581332327, + -6.310202688898581, + -0.21514539242787462, + -0.014591267663032582, + -0.0012400139569342487, + -0.00011809031974168227, + -1.205265153087987e-05, + -1.289266489280067e-06, + -1.423323999321153e-07, + -1.613153359846845e-08, + -1.595484477206556e-09, + 5.115941663686687e-10, + -1.9815615814877674e-10 ], - "xmax": 339.1769149148233, - "xmin": 339.1766467090241 + "xmax": 339.17691491482435, + "xmin": 339.17664670902514 }, { "coef": [ - 4815.040735951021, - -2.610490016183326, - -0.04546856048053724, - -0.001578445046027806, - -6.859290058355656e-05, - -3.3396133067038886e-06, - -1.7417894423817208e-07, - -8.737038566671154e-09, - -5.125225503595253e-10, - -2.8569953776506278e-11, - -2.764818747683285e-11, - -7.779367446185383e-10, - -2.6943780540023e-11 + 4815.040735891159, + -2.6104900203591193, + -0.04546856069760331, + -0.0015784450588365233, + -6.859290141726005e-05, + -3.3396130414346003e-06, + -1.7417915266404123e-07, + -8.736830140801998e-09, + -5.125604459720988e-10, + -2.8645745001654282e-11, + -2.7799769927128076e-11, + -7.780693792625472e-10, + -2.717115421546623e-11 ], - "xmax": 339.17700431675644, - "xmin": 339.1769149148233 + "xmax": 339.17700431675746, + "xmin": 339.17691491482435 }, { "coef": [ - 4808.266935441935, - -4.254390617017498, - -0.1476250966482207, - -0.010235969024711742, - -0.0008883878656087991, - -8.638736804916603e-05, - -9.002220985600657e-06, - -9.833050062506605e-07, - -1.1100794333928784e-07, - -1.2853809514993973e-08, - -1.5251311897794404e-09, - -2.9101604282337576e-10, - -2.9388047551037744e-11 + 4808.266935368608, + -4.254390623793935, + -0.14762509747442085, + -0.010235969135916418, + -0.0008883880030940816, + -8.638916432014984e-05, + -9.002385698880711e-06, + -9.838869881207639e-07, + -1.1105021589511398e-07, + -1.2866277171530778e-08, + -1.6034993165822073e-09, + -1.3985153202947855e-09, + -1.0615508472255897e-10 ], - "xmax": 339.1771235193339, - "xmin": 339.17700431675644 + "xmax": 339.1771235193349, + "xmin": 339.17700431675746 }, { "coef": [ - 4799.609601450073, - -4.449226913169996, - -0.2254777926358272, - -0.02289961993382552, - -0.002911516226204428, - -0.0004148479663556218, - -6.335201565686202e-05, - -1.0137609096757845e-05, - -1.6776823897698676e-06, - -2.8479020532631987e-07, + 4799.6096013581055, + -4.449226932010122, + -0.22547779551847066, + -0.022899620424100008, + -0.0029115163135159192, + -0.0004148479826128396, + -6.335201884009348e-05, + -1.0137609722035452e-05, + -1.6776825034567053e-06, + -2.847900347960633e-07, -4.93294990219481e-08, - -8.632712008878334e-09, - -1.514138148195343e-09 + -8.632541478621752e-09, + -1.514194991614204e-09 ], - "xmax": 339.17721292126697, - "xmin": 339.1771235193339 + "xmax": 339.17721292126794, + "xmin": 339.1771235193349 }, { "coef": [ - 4792.850230007166, - -2.127375121818239, - -0.07372077936585072, - -0.0051158638039856775, - -0.0004440849033011438, - -4.3188088660019126e-05, - -4.5004984707594905e-06, - -4.896371370812937e-07, - -5.536329525799945e-08, - -6.407083775987961e-09, - -7.229567819797706e-10, - 3.8729639360669927e-10, - 2.2168933355715126e-11 + 4792.850229868188, + -2.127375141176701, + -0.0737207813855732, + -0.005115864038047929, + -0.00044408493174180104, + -4.318809205167645e-05, + -4.50049883076781e-06, + -4.896375728808383e-07, + -5.536331420580574e-08, + -6.407007984762814e-09, + -7.22975729786057e-10, + 3.8725849799412486e-10, + 2.2112089936854318e-11 ], - "xmax": 339.17724272191134, - "xmin": 339.17721292126697 + "xmax": 339.1772427219123, + "xmin": 339.17721292126794 }, { "coef": [ - 4787.6187043632435, - -3.2553325741633676, - -0.26726342862152647, - -0.044211104014187305, - -0.009169286739813166, - -0.002133058023651423, - -0.0005321111206848095, - -0.00013913347098708394, - -3.7636211936266114e-05, - -1.044980601876298e-05, - -2.9780705625548515e-06, - -9.227918900556024e-07, - -2.4779168938948715e-07 + 4787.61870414276, + -3.255332648709229, + -0.2672634473479845, + -0.044211109228926765, + -0.00916928826306521, + -0.00213305848093778, + -0.0005321112608796282, + -0.00013913351445335155, + -3.7636225427104186e-05, + -1.0449810319915008e-05, + -2.9780720594315483e-06, + -9.227924395419847e-07, + -2.477918314980343e-07 ], - "xmax": 339.1772725225557, - "xmin": 339.17724272191134 + "xmax": 339.1772725225567, + "xmin": 339.1772427219123 }, { "coef": [ - 4781.634880056051, - -2.8138537733116746, - -0.5723943688833547, - -0.2524749588475825, - -0.14607550589994708, - -0.09798728394809723, - -0.07240747205469551, - -0.05741830494417536, - -0.04813323274908362, - -0.0422643008545233, - -0.038648329362448296, - -0.03667580310087396, - -0.01802413969946315 + 4781.63487933683, + -2.8138543636046207, + -0.5723946540889939, + -0.25247506218427573, + -0.1460754956229222, + -0.09798717972332027, + -0.07240730731051159, + -0.05741810289329563, + -0.04813299519291392, + -0.04226404091646585, + -0.03864804872402616, + -0.036675515020094585, + -0.01802398897950752 ], - "xmax": 339.1772824561038, - "xmin": 339.1772725225557 + "xmax": 339.1772824561048, + "xmin": 339.1772725225567 } ], "jexpansions_rhoV": [ { "coef": [ - 5.7119401110817405, - 4.333042882769399, - 0.7178988481822238, - 0.06112422340988966, - 0.002448148145442049, - 1.331127645532836e-05, - -1.1563992337965035e-06, - 7.061155588960155e-08, - 2.9639824666948187e-09, - -1.2614794376630144e-10, - 4.483541403631403e-13, - 2.967442870384179e-13, - -9.353628982466944e-15 + 5.711940111081774, + 4.333042882769447, + 0.7178988481822344, + 0.06112422340989132, + 0.00244814814544278, + 1.3311276457261999e-05, + -1.1563992307896494e-06, + 7.061155832284036e-08, + 2.9639808938788674e-09, + -1.2614947957481883e-10, + 4.4828012549483193e-13, + 2.952084785210198e-13, + -1.0172418463127997e-14 ], - "xmax": 194.76606181222525, + "xmax": 194.7660618122254, "xmin": 172.52 }, { "coef": [ - 13.833719580716357, - 3.1489436560898922, - 0.14491305999224768, - 0.003254076138662922, - 3.156197071950497e-05, - 2.9260119784631994e-08, - 7.741662735572602e-10, - 4.8890571343544476e-11, - 1.0723446914494785e-13, - 3.898855620030321e-15, - 4.094750157270806e-15, - -2.0963487129455243e-15, - -5.551115123125783e-17 + 13.833719580716503, + 3.1489436560899398, + 0.1449130599922496, + 0.0032540761386633294, + 3.156197071876483e-05, + 2.9260109089483522e-08, + 7.741646452301574e-10, + 4.888609344401182e-11, + 1.0605023125201435e-13, + 4.416959698188728e-15, + 3.354601474187368e-15, + -7.795493572687994e-15, + -2.220446049250313e-16 ], - "xmax": 202.1814157496337, - "xmin": 194.76606181222525 + "xmax": 202.18141574963386, + "xmin": 194.7660618122254 }, { "coef": [ - 23.10912320135927, - 6.31542813903737, - 0.3461953905961146, - 0.009131498420020817, - 0.00010330965215476527, - 3.124230283421258e-07, - 1.3656155534489484e-08, - 3.9319970025700187e-10, - 1.0902337788944403e-12, - 3.6420546495168496e-14, - 7.100196070137643e-15, - -9.986775934163051e-15, - -9.992007221626409e-16 + 23.10912320135953, + 6.3154281390374605, + 0.3461953905961175, + 0.009131498420019929, + 0.00010330965215321096, + 3.124230416648021e-07, + 1.3656161307649212e-08, + 3.9318437917926204e-10, + 1.0846826637713145e-12, + 3.57544126803934e-14, + 4.657705415962298e-15, + -4.879750020887329e-15, + 2.55351295663786e-15 ], - "xmax": 212.06855433284494, - "xmin": 202.1814157496337 + "xmax": 212.06855433284517, + "xmin": 202.18141574963386 }, { "coef": [ - 42.55694368250852, - 13.619034073983904, - 0.8681761070414085, - 0.026468940959630583, - 0.0003686739858515078, - 3.734761453867141e-06, - 1.5529860953794613e-07, - 3.64095819133095e-09, - 5.327739277535888e-11, - 3.586454189102239e-12, - 2.686842416061544e-13, - 7.095157710734483e-15, - 5.551115123125783e-15 + 42.556943682509065, + 13.619034073984098, + 0.8681761070414294, + 0.02646894095963221, + 0.0003686739858547645, + 3.7347614408405245e-06, + 1.5529859902783485e-07, + 3.6409633723717317e-09, + 5.3284202143243246e-11, + 3.5880825162050228e-12, + 2.7282907423142166e-13, + 6.058949554417671e-15, + -4.440892098500626e-16 ], - "xmax": 225.2514057771266, - "xmin": 212.06855433284494 + "xmax": 225.2514057771269, + "xmin": 212.06855433284517 }, { "coef": [ - 86.45385981683454, - 31.602632874683742, - 2.3001703156145794, - 0.08201900689816363, - 0.001659511476332508, - 4.4400399173273464e-05, - 2.096682139050977e-06, + 86.45385981683599, + 31.602632874684378, + 2.3001703156146327, + 0.0820190068981956, + 0.0016595114763342843, + 4.4400399160838966e-05, + 2.0966821363864416e-06, 9.026982003127364e-08, - 3.874833819218329e-09, - -3.072478812577175e-11, - -2.6073333635631563e-11, - -1.0836097251194673e-12, - 1.8607337892717624e-13 + 3.874828490147811e-09, + -3.075143347836275e-11, + -2.6076886349310363e-11, + -1.0578525509481637e-12, + 1.91402449445377e-13 ], - "xmax": 242.8285410361688, - "xmin": 225.2514057771266 + "xmax": 242.8285410361692, + "xmin": 225.2514057771269 }, { "coef": [ - 171.55458068235882, - 54.48258955075486, - 3.484667600972435, - 0.11944452759435302, - 0.0033011696129043476, - 0.0001323859843840704, - 5.229187568916806e-06, - 1.0145678190372851e-07, - 9.445694946560625e-10, - 6.736027681955956e-10, - 6.229213237642493e-11, - -1.4945431911119528e-12, - -2.913225216616411e-13 + 171.55458068236163, + 54.48258955075584, + 3.484667600972494, + 0.11944452759440156, + 0.0033011696129037556, + 0.0001323859843740044, + 5.229187511481269e-06, + 1.014567753904201e-07, + 9.445706788939554e-10, + 6.736193475260967e-10, + 6.238746352680607e-11, + -1.3998041596772727e-12, + -2.424727085781342e-13 ], - "xmax": 260.405676295211, - "xmin": 242.8285410361688 + "xmax": 260.4056762952115, + "xmin": 242.8285410361692 }, { "coef": [ - 254.31197046873487, - 25.17153367832018, - 0.5103390519433428, - 0.0061236196763278595, - 6.998771664150988e-05, - 9.725922549073706e-07, - 1.1966170990914676e-08, - 1.7567564830956472e-10, - 4.393644500438658e-12, - 1.9646157257158978e-13, - 6.288652598084679e-14, - -9.13082354112508e-14, - 0.0 + 254.31197046873928, + 25.171533678320756, + 0.5103390519433144, + 0.006123619676214173, + 6.998771659177189e-05, + 9.72592262012798e-07, + 1.196624915061561e-08, + 1.7591368012604435e-10, + 4.372328218365855e-12, + 2.994902692568043e-13, + 3.091210287164227e-14, + -8.775552173245028e-14, + 3.552713678800501e-14 ], - "xmax": 266.2647213815584, - "xmin": 260.405676295211 + "xmax": 266.26472138155896, + "xmin": 260.4056762952115 }, { "coef": [ - 378.7007782038456, - 104.70897061738955, - 6.247462018355301, - 0.24904187825992244, - 0.010270568231431207, - 0.00048407943153242855, - 2.500794459799523e-05, - 1.5145969907518857e-06, - 8.668077563130539e-08, - 4.529193723771797e-09, - 2.9783571905029805e-10, - 1.9830174539648746e-11, - 1.0267342531733448e-12 + 378.7007782038525, + 104.7089706173913, + 6.247462018355447, + 0.24904187825991178, + 0.010270568231416996, + 0.00048407943132992387, + 2.5007944526940957e-05, + 1.514596788247206e-06, + 8.66807401041686e-08, + 4.529190171058118e-09, + 2.9786414075972846e-10, + 2.0032679219340374e-11, + 1.0409451078885468e-12 ], - "xmax": 283.8418566406006, - "xmin": 266.2647213815584 + "xmax": 283.84185664060124, + "xmin": 266.26472138155896 }, { "coef": [ - 536.7523078856527, - 47.79111177627911, - 0.9704645059172825, - 0.014874360215197547, - 0.00025262742515281677, - 5.0107733167618305e-06, - 1.1032299824651373e-07, - 2.52453929019511e-09, - 5.8056180617410785e-11, - 1.6507254685104333e-12, - 1.4694765296262022e-13, - -1.8247478975062523e-13, - 7.105427357601002e-15 + 536.7523078856632, + 47.79111177628019, + 0.9704645059172115, + 0.014874360215019911, + 0.0002526274251101842, + 5.0107733380781125e-06, + 1.1032316167134295e-07, + 2.5249798266912812e-09, + 5.801354805326518e-11, + 1.8709937165960643e-12, + 9.010423410181215e-14, + -1.7536936239302418e-13, + 5.684341886080802e-14 ], - "xmax": 289.700901726948, - "xmin": 283.8418566406006 + "xmax": 289.7009017269487, + "xmin": 283.84185664060124 }, { "coef": [ - 660.7335915598394, - 77.32359895867279, - 2.1675190050361715, - 0.04977770741193918, - 0.0013220648828727055, - 4.102042737283211e-05, - 1.3824625020608244e-06, - 4.820493667904998e-08, - 1.7263224482837814e-09, - 6.370523335249326e-11, - 2.439189919414464e-12, - -2.028335757320451e-15, - 1.0302869668521453e-13 - ], - "xmax": 297.51296184207786, - "xmin": 289.700901726948 - }, - { - "coef": [ - 863.145503339666, - 127.61264629611605, - 4.910465622422826, - 0.1746321931581331, - 0.0075145411652347, - 0.00037190446519125417, - 1.965973142042815e-05, - 1.0779494996073217e-06, - 6.073196950767759e-08, - 3.4915867432310038e-09, - 2.0424445340629673e-10, - 1.254213527410984e-11, - 7.780442956573097e-13 - ], - "xmax": 307.4001004252891, - "xmin": 297.51296184207786 - }, - { - "coef": [ - 1047.6450148098133, - 52.524794930728284, - 0.7414096761956066, - 0.010660293720671028, - 0.0001891598599903332, - 3.8016614163539037e-06, - 8.111151348794535e-08, - 1.7958350540486532e-09, - 4.0548435668610425e-11, - 1.4872725789571029e-12, - 2.6066255101274365e-13, - -4.596145170255717e-13, - 0.0 - ], - "xmax": 310.6958132863595, - "xmin": 307.4001004252891 - }, - { - "coef": [ - 1179.6785035582407, - 80.35862703633538, - 1.637388976108956, - 0.036153688045099726, - 0.0009904411963263483, - 3.0456045048647786e-05, - 9.92250751725885e-07, - 3.3569757700127015e-08, - 1.1677671564825135e-09, - 4.214501396978522e-11, - 1.6102076983217504e-12, - 1.803599957937021e-13, - 1.8474111129762605e-13 - ], - "xmax": 315.0900971011201, - "xmin": 310.6958132863595 - }, - { - "coef": [ - 1389.3015702691366, - 131.57082951540136, - 4.127046177423929, - 0.1527662301808364, - 0.007014003820367368, - 0.0003578238024518145, - 1.9328557692536017e-05, - 1.0858742941012657e-06, - 6.283294722616343e-08, - 3.720990246072268e-09, - 2.2463935474885314e-10, - 1.3321407457204406e-11, - 8.029132914089132e-13 - ], - "xmax": 320.9491421874675, - "xmin": 315.0900971011201 - }, - { - "coef": [ - 1647.2253876774082, - 125.56175416016903, - 3.6244489639810644, - 0.1343157379932075, - 0.006131169075556455, - 0.00030905937910806556, - 1.6517899252290563e-05, - 9.196924276457408e-07, - 5.278233795795171e-08, - 3.100938714878397e-09, - 1.8580460707238316e-10, - 1.0717302784145348e-11, - 6.608047442568932e-13 - ], - "xmax": 325.343426002228, - "xmin": 320.9491421874675 - }, - { - "coef": [ - 1825.2782974604736, - 49.273019226397174, - 0.5553506471132923, - 0.0084178022521908, - 0.00015631570098295378, - 3.201004895150629e-06, - 6.958369769016591e-08, - 1.5771857179175593e-09, - 3.6201039608754473e-11, - 1.827207609126088e-12, - 4.4652914530623256e-13, - -2.191554698630005e-13, + 660.7335915598541, + 77.32359895867553, + 2.167519005036458, + 0.049777707411943914, + 0.0013220648829390229, + 4.1020427178617095e-05, + 1.3824623196881888e-06, + 4.8205069313693986e-08, + 1.726438503597289e-09, + 6.37312865861378e-11, + 2.512612668776341e-12, + -2.5713093615990403e-14, -1.4210854715202004e-14 ], - "xmax": 326.80818727381484, - "xmin": 325.343426002228 + "xmax": 297.5129618420786, + "xmin": 289.7009017269487 }, { "coef": [ - 1947.383552501005, - 73.48170979127477, - 1.2415983720945585, - 0.028998303527088518, - 0.0008271200258328729, - 2.601408655697984e-05, - 8.691277465726101e-07, - 3.0274434603291107e-08, - 1.0860511605072476e-09, - 4.084119669884092e-11, - 1.5924154807522659e-12, - -1.713300092320655e-13, + 863.1455033396852, + 127.61264629611904, + 4.910465622423003, + 0.17463219315816153, + 0.0075145411652347, + 0.0003719044652267813, + 1.965973142042815e-05, + 1.0779494925018944e-06, + 6.073200503481437e-08, + 3.4915370052395005e-09, + 2.0425866426101194e-10, + 1.2506608137321836e-11, + 7.638334409421077e-13 + ], + "xmax": 307.40010042528985, + "xmin": 297.5129618420786 + }, + { + "coef": [ + 1047.645014809839, + 52.52479493073101, + 0.7414096761955213, + 0.010660293720287334, + 0.00018915985991927893, + 3.801660947395698e-06, + 8.111176928333022e-08, + 1.7962187471259637e-09, + 4.043474883088881e-11, + 1.913598220413163e-12, + 1.611865680063295e-13, + 6.618710743690256e-14, + 1.4210854715202004e-13 + ], + "xmax": 310.6958132863603, + "xmin": 307.40010042528985 + }, + { + "coef": [ + 1179.6785035582698, + 80.3586270363378, + 1.6373889761089606, + 0.03615368804509499, + 0.000990441196359507, + 3.045604505812169e-05, + 9.92250784884546e-07, + 3.356969611975658e-08, + 1.1677150500152243e-09, + 4.209764445406788e-11, + 1.6291555046086862e-12, + 2.1825560836757425e-13, + 2.1316282072803006e-13 + ], + "xmax": 315.0900971011209, + "xmin": 310.6958132863603 + }, + { + "coef": [ + 1389.3015702691725, + 131.570829515407, + 4.127046177424057, + 0.15276623018026797, + 0.0070140038200405186, + 0.0003578238024518145, + 1.9328558161494223e-05, + 1.0858756014998995e-06, + 6.283277669590685e-08, + 3.7215586802608763e-09, + 2.2449724620170112e-10, + 1.3321407457204408e-11, + 1.0516032489249483e-12 + ], + "xmax": 320.94914218746834, + "xmin": 315.0900971011209 + }, + { + "coef": [ + 1647.2253876774607, + 125.56175416017564, + 3.6244489639811306, + 0.13431573799319801, + 0.006131169075295923, + 0.0003090593799654538, + 1.6517899915463784e-05, + 9.196932281905564e-07, + 5.2782077425615266e-08, + 3.100957662684684e-09, + 1.8554407473593778e-10, + 1.1532058454483597e-11, + 9.521272659185342e-13 + ], + "xmax": 325.3434260022289, + "xmin": 320.94914218746834 + }, + { + "coef": [ + 1825.2782974605345, + 49.27301922640001, + 0.555350647113188, + 0.008417802252209748, + 0.00015631570096400597, + 3.2010048572550167e-06, + 6.958365032065018e-08, + 1.5771478223049856e-09, + 3.626735693075875e-11, + 1.7608902871218122e-12, + 4.560030484497003e-13, + -2.2862937300646827e-13, + -1.4210854715202004e-14 + ], + "xmax": 326.80818727381575, + "xmin": 325.3434260022289 + }, + { + "coef": [ + 1947.3835525010738, + 73.48170979127933, + 1.241598372094653, + 0.028998303527079047, + 0.0008271200258139252, + 2.6014086604349355e-05, + 8.691277560465133e-07, + 3.027442512938796e-08, + 1.0859753692820997e-09, + 4.083172279569745e-11, + 1.6303110933261376e-12, + -6.711707465391716e-14, 3.410605131648481e-13 ], - "xmax": 328.7612023025973, - "xmin": 326.80818727381484 + "xmax": 328.76120230259824, + "xmin": 326.80818727381575 }, { "coef": [ - 2129.523734665421, - 110.12917249940384, - 2.8427266441587165, - 0.10508000252065118, - 0.004727051530750379, - 0.0002345866204790295, - 1.2373975778365591e-05, - 6.804428663767363e-07, - 3.855257103309439e-08, - 2.2361631349235903e-09, - 1.3227475533083658e-10, - 6.5368735272566e-12, - 3.836930773104541e-13 - ], - "xmax": 331.2329869484001, - "xmin": 328.7612023025973 - }, - { - "coef": [ - 2284.7021595846536, - 42.524855184645624, - 0.43479835453503696, - 0.00653100449884974, - 0.00011914338300684314, - 2.3986353984641775e-06, - 5.132882947101972e-08, - 1.146485289138931e-09, - 2.5654429480360743e-11, - 1.7440984105487194e-12, - 6.433251816052171e-13, - 2.093261013069031e-13, - -2.842170943040401e-14 - ], - "xmax": 332.05691516366767, - "xmin": 331.2329869484001 - }, - { - "coef": [ - 2389.5070530650046, - 62.7864055987949, - 0.9695533546771634, - 0.022341074510716763, - 0.0006246410502973602, - 1.927582472316238e-05, - 6.321118809508934e-07, - 2.1593660302764e-08, - 7.587067656149502e-10, - 2.846089876951916e-11, - 1.4955829701266649e-12, - 2.6656301455838367e-13, - -1.4210854715202004e-14 - ], - "xmax": 333.15548611735784, - "xmin": 332.05691516366767 - }, - { - "coef": [ - 2549.191464543493, - 98.29382978038714, - 2.479490748985368, - 0.09535572029995097, - 0.004444662140171375, - 0.00022860545098711682, - 1.2486682320912777e-05, - 7.100137527790058e-07, - 4.154565925874414e-08, - 2.4850540388717335e-09, - 1.5165636669627675e-10, - 8.92629158550588e-12, - 5.684341886080801e-13 - ], - "xmax": 334.6202473889447, - "xmin": 333.15548611735784 - }, - { - "coef": [ - 2737.940056306949, - 90.00699565895493, - 2.212790170904154, - 0.0847622696296383, - 0.003929228535352593, - 0.00020077929775931102, - 1.0883135271967822e-05, - 6.135920812651058e-07, - 3.557897520089676e-08, - 2.1084672992038277e-09, - 1.2755384681434657e-10, - 8.245080844123776e-12, - 5.258016244624741e-13 - ], - "xmax": 335.71881834263485, - "xmin": 334.6202473889447 - }, - { - "coef": [ - 2864.4648850903613, - 34.55346586109148, - 0.34258539680924227, - 0.005357871681822549, - 0.00010125603630340685, - 2.107043470137241e-06, - 4.647098817677985e-08, - 1.066850377710158e-09, - 2.420220390419101e-11, - -4.4165482037326056e-13, - 6.690284958164926e-13, - 2.769998345262392e-12, - 1.4210854715202004e-14 - ], - "xmax": 336.08500866053157, - "xmin": 335.71881834263485 - }, - { - "coef": [ - 2949.5048695239216, - 50.89191448507237, - 0.7715054704968015, - 0.018586588839216874, - 0.00054043133965426, - 1.728707605191655e-05, - 5.857171419572538e-07, - 2.0624217386533407e-08, - 7.444174750404041e-10, - 2.899408197974976e-11, - 7.066043750224266e-13, - -3.5203536086324234e-12, + 2129.5237346655085, + 110.12917249941715, + 2.842726644159238, + 0.10508000252169332, + 0.0047270515304187926, + 0.00023458662083903782, + 1.237397649838223e-05, + 6.804421747818067e-07, + 3.855218260306551e-08, + 2.2348746840960784e-09, + 1.3185790359252398e-10, + 7.635846291898889e-12, 9.237055564881302e-13 ], - "xmax": 336.57326241772716, - "xmin": 336.08500866053157 + "xmax": 331.23298694840105, + "xmin": 328.76120230259824 }, { "coef": [ - 3101.621928590103, - 103.71693882010055, - 3.4564022977149356, - 0.1851034820349418, - 0.011931719949051803, - 0.0008446149710954901, - 6.32600762224397e-05, - 4.920501476755358e-06, - 3.9323857033059965e-07, - 3.2076395138115305e-08, - 2.658884403449217e-09, - 2.2162742561279884e-10, - 1.8701484805205837e-11 + 2284.7021595847596, + 42.524855184654825, + 0.43479835453533067, + 0.006531004498953953, + 0.00011914338298789534, + 2.3986328310364258e-06, + 5.132881052321344e-08, + 1.145594742243445e-09, + 2.5493373126921788e-11, + 1.706202797974848e-12, + 5.675339564574727e-13, + -1.4770286582304009e-12, + -4.263256414560601e-14 ], - "xmax": 337.3971906329948, - "xmin": 336.57326241772716 + "xmax": 332.0569151636687, + "xmin": 331.23298694840105 }, { "coef": [ - 3250.549728179036, - 42.16247187268595, - 0.6203241476500848, - 0.014771441258513268, - 0.00042190668756758126, - 1.3208343541908516e-05, - 4.370680853858628e-07, - 1.5008250091750786e-08, - 5.281931512852624e-10, - 1.6707861914443278e-11, - 1.311501864432862e-12, - -1.140971607850438e-12, + 2389.5070530651215, + 62.78640559880039, + 0.9695533546773245, + 0.0223410745108115, + 0.000624641050231043, + 1.9275826665312525e-05, + 6.321118714769903e-07, + 2.1595517187780122e-08, + 7.587257134212372e-10, + 2.8498794382093033e-11, + 1.5145307764136002e-12, + -1.6850610329960243e-12, 5.684341886080802e-14 ], - "xmax": 337.67183337141734, - "xmin": 337.3971906329948 + "xmax": 333.1554861173588, + "xmin": 332.0569151636687 }, { "coef": [ - 3357.408809675908, - 65.60612298657588, - 1.6059907726964904, - 0.06383109836763962, - 0.003034537582213109, - 0.0001579041847852909, - 8.67876139325972e-06, - 4.948855652560264e-07, - 2.897542488653976e-08, - 1.7277520032616364e-09, - 1.0601668918803019e-10, - 1.2047091785868049e-11, - 7.673861546209082e-13 + 2549.1914645436304, + 98.2938297804012, + 2.4794907489861733, + 0.0953557202998278, + 0.004444662140294536, + 0.00022860545117659486, + 1.2486682500916936e-05, + 7.100137433051027e-07, + 4.154558346751899e-08, + 2.4851014083874506e-09, + 1.5160899718055943e-10, + 8.97366110122322e-12, + 5.826450433232822e-13 ], - "xmax": 338.03802368931406, - "xmin": 337.67183337141734 + "xmax": 334.6202473889457, + "xmin": 333.1554861173588 }, { "coef": [ - 3504.7027999364773, - 82.69182590421839, - 2.824073542456956, - 0.156759805094241, - 0.010364149803349465, - 0.0007486326714046471, - 5.7065709866111446e-05, - 4.510745684382403e-06, - 3.6600810752237183e-07, - 3.0294659080813026e-08, - 2.5454324542227284e-09, - 2.1999987335558164e-10, - 2.091837814077735e-11 + 2737.940056307117, + 90.00699565897153, + 2.21279017090495, + 0.08476226962972357, + 0.003929228535409436, + 0.0002007792977024676, + 1.088313535723295e-05, + 6.135920528433963e-07, + 3.557900362260619e-08, + 2.1084388774943973e-09, + 1.2758226852377697e-10, + 8.27350255355418e-12, + 6.110667527536862e-13 ], - "xmax": 338.4042140072107, - "xmin": 338.03802368931406 + "xmax": 335.71881834263587, + "xmin": 334.6202473889457 }, { "coef": [ - 3623.699532950721, - 33.81640727564128, - 0.5159085534914827, - 0.012763417207923577, - 0.0003747471151148041, - 1.2004012790622847e-05, - 4.055112133195046e-07, - 1.4201776377058892e-08, - 5.093004241182219e-10, - 2.78698841164139e-11, - 1.6886936912062674e-12, - -1.2907897591806113e-12, - 5.684341886080802e-14 - ], - "xmax": 338.52627744650965, - "xmin": 338.4042140072107 - }, - { - "coef": [ - 3724.8965660818444, - 69.06822584517367, - 2.3366663073151908, - 0.12772640434187854, - 0.008261395227996729, - 0.0005823507592953675, - 4.3273317622207185e-05, - 3.3327963610091614e-06, - 2.6344306257750545e-07, - 2.124225096769109e-08, - 1.7409075197862493e-09, - 1.5345625716903866e-10, - 1.2732925824820995e-11 - ], - "xmax": 338.7322595003265, - "xmin": 338.52627744650965 - }, - { - "coef": [ - 3824.199865687349, - 28.174618064561248, - 0.4227388707028974, - 0.010192488945637533, - 0.00028997202876388683, - 8.982885123541276e-06, - 2.9327575765848215e-07, - 9.931529175157805e-09, - 3.4360090495957303e-10, - 1.4171573350352599e-11, - 1.3466799986479901e-12, - 2.120768551861299e-12, + 2864.4648850905546, + 34.553465861098815, + 0.3425853968092991, + 0.005357871682021501, + 0.00010125603624656343, + 2.1070434985589506e-06, + 4.647104502019871e-08, + 1.0667366908724364e-09, + 2.41169387758998e-11, + -4.416548203732597e-13, + 7.258719146772998e-13, + 2.7984200546927973e-12, 1.1368683772161603e-13 ], - "xmax": 338.8009201849321, - "xmin": 338.7322595003265 + "xmax": 336.0850086605326, + "xmin": 335.71881834263587 }, { "coef": [ - 3895.729104046143, - 43.97751024162081, - 1.0980082085774647, - 0.043850161155564456, - 0.002062739048124425, - 0.0001056192530378179, - 5.699896956142408e-06, - 3.1889694091332185e-07, - 1.8313681178921428e-08, - 1.075665837919045e-09, - 6.074779194622898e-11, - 8.430648807374365e-12, - 4.945377440890297e-12 + 2949.5048695241353, + 50.891914485085174, + 0.7715054704972657, + 0.0185865888392074, + 0.0005404313398342641, + 1.728707592875581e-05, + 5.857170377443192e-07, + 2.0624293177758553e-08, + 7.444553706529779e-10, + 2.8984608076606296e-11, + 7.160782781658937e-13, + -3.5014058023454865e-12, + 8.810729923425242e-13 ], - "xmax": 338.8924677644063, - "xmin": 338.8009201849321 + "xmax": 336.5732624177282, + "xmin": 336.0850086605326 }, { "coef": [ - 3994.6802457615295, - 55.658591205178844, - 1.9287227085219274, - 0.1061486661419804, - 0.0068689466358295755, - 0.00048387060686085916, - 3.594702995310927e-05, - 2.7708045604815224e-06, - 2.1947770842943745e-07, - 1.7759607584778602e-08, - 1.4571059689815986e-09, - 1.28825417234945e-10, - 1.6427748050773516e-11 + 3101.621928590361, + 103.71693882013501, + 3.456402297717958, + 0.18510348203533022, + 0.011931719949203385, + 0.0008446149711712813, + 6.326007626033531e-05, + 4.9205015809682924e-06, + 3.932384376959556e-07, + 3.2076385664212164e-08, + 2.6588938773523603e-09, + 2.2156110829079457e-10, + 1.8673063095775433e-11 ], - "xmax": 338.9840153438805, - "xmin": 338.8924677644063 + "xmax": 337.39719063299583, + "xmin": 336.5732624177282 }, { "coef": [ - 4074.8504657637104, - 22.81099654082838, - 0.3498688096653005, - 0.008471730617581165, - 0.00024104923479267672, + 3250.54972817935, + 42.16247187270473, + 0.6203241476508048, + 0.014771441258589058, + 0.0004219066875486335, + 1.3208343504012904e-05, + 4.370679527512188e-07, + 1.500826903955707e-08, + 5.281742034789754e-10, + 1.6442592626426176e-11, + 1.3493974770067327e-12, + -1.1220238015635007e-12, + 0.0 + ], + "xmax": 337.67183337141836, + "xmin": 337.39719063299583 + }, + { + "coef": [ + 3357.4088096762757, + 65.6061229866112, + 1.6059907726988019, + 0.06383109836794279, + 0.0030345375823078477, + 0.0001579041847473953, + 8.678761317468495e-06, + 4.948854136735761e-07, + 2.8975462782152336e-08, + 1.7278846379056449e-09, + 1.0594089796288245e-10, + 1.2066039592154987e-11, + 6.536993168992922e-13 + ], + "xmax": 338.0380236893151, + "xmin": 337.67183337141836 + }, + { + "coef": [ + 3504.7027999369425, + 82.69182590428176, + 2.8240735424622616, + 0.15675980509479048, + 0.010364149803197883, + 0.0007486326714425427, + 5.706570988505925e-05, + 4.510745665434597e-06, + 3.660081264701781e-07, + 3.0294583289587876e-08, + 2.545508245447876e-09, + 2.199809255492947e-10, + 2.0804691303055733e-11 + ], + "xmax": 338.40421400721175, + "xmin": 338.0380236893151 + }, + { + "coef": [ + 3623.6995329512893, + 33.816407275676454, + 0.5159085534927522, + 0.012763417207961474, + 0.0003747471152474388, + 1.2004012999048715e-05, + 4.055114596409863e-07, + 1.4201643742414885e-08, + 5.094330587622304e-10, + 2.7964623147848582e-11, + 1.8213283352148167e-12, + -1.1960507277459288e-12, + -8.526512829121202e-14 + ], + "xmax": 338.5262774465107, + "xmin": 338.40421400721175 + }, + { + "coef": [ + 3724.8965660825347, + 69.06822584526698, + 2.3366663073229974, + 0.12772640434282595, + 0.008261395227958832, + 0.0005823507592195763, + 4.327331769799841e-05, + 3.332796285217936e-06, + 2.6344296783847405e-07, + 2.1242232019884804e-08, + 1.7410969978491186e-09, + 1.533804659438909e-10, + 1.27613475342514e-11 + ], + "xmax": 338.73225950032753, + "xmin": 338.5262774465107 + }, + { + "coef": [ + 3824.1998656881897, + 28.174618064611593, + 0.4227388707046216, + 0.010192488945618585, + 0.00028997202866914783, + 8.98288504775005e-06, + 2.932756629194507e-07, + 9.93162391418924e-09, + 3.436766961847208e-10, + 1.4095782125204857e-11, + 1.4793146426565385e-12, + 2.1586641644351745e-12, + 1.1368683772161603e-13 + ], + "xmax": 338.80092018493315, + "xmin": 338.73225950032753 + }, + { + "coef": [ + 3895.7291040471287, + 43.977510241719926, + 1.0980082085833953, + 0.043850161155886566, + 0.002062739048143373, + 0.00010561925301887009, + 5.699896861403376e-06, + 3.1889709249577216e-07, + 1.8313586439889996e-08, + 1.0753626730184538e-09, + 6.06530529147943e-11, + 8.468544419948242e-12, + 5.059064278611913e-12 + ], + "xmax": 338.89246776440734, + "xmin": 338.80092018493315 + }, + { + "coef": [ + 3994.680245762781, + 55.658591205352366, + 1.9287227085362708, + 0.10614866614326884, + 0.006868946635848523, + 0.00048387060678506795, + 3.594702997205707e-05, + 2.7708046552205537e-06, + 2.1947767053382488e-07, + 1.7759531793553455e-08, + 1.457238603625607e-09, + 1.2874962600979726e-10, + 1.6569856597925536e-11 + ], + "xmax": 338.98401534388154, + "xmin": 338.89246776440734 + }, + { + "coef": [ + 4074.850465765243, + 22.81099654092166, + 0.34986880966893846, + 0.008471730617751696, + 0.00024104923496320697, 7.472406120036621e-06, 2.4459332831173973e-07, 8.320777346679705e-09, - 2.8258778474130925e-10, - 1.20884986331195e-11, - -4.926227856657691e-12, - 2.1979253514900095e-11, + 2.8247409790358764e-10, + 1.1974811795397892e-11, + -5.039914694379314e-12, + 2.19792535149001e-11, 7.787548383930698e-12 ], - "xmax": 339.01453120370525, - "xmin": 338.9840153438805 + "xmax": 339.01453120370627, + "xmin": 338.98401534388154 }, { "coef": [ - 4143.111006569296, - 46.57698076755285, - 1.5637689794676437, - 0.08254326669593108, - 0.005124140211895177, - 0.0003471971494756662, - 2.4886087449725035e-05, - 1.856215684871987e-06, - 1.4266426735326497e-07, - 1.1228318432532597e-08, - 9.036019246730752e-10, - 1.0735827976639532e-10, - 8.15703060652595e-12 + 4143.111006571156, + 46.57698076780358, + 1.5637689794870842, + 0.08254326669746585, + 0.00512414021178149, + 0.00034719714936197937, + 2.4886087392881616e-05, + 1.8562156280285681e-06, + 1.4266415366642724e-07, + 1.1228204745694875e-08, + 9.03658768091936e-10, + 1.0701721925323047e-10, + 8.412825991399586e-12 ], - "xmax": 339.0660267171595, - "xmin": 339.01453120370525 + "xmax": 339.0660267171605, + "xmin": 339.01453120370627 }, { "coef": [ - 4210.012513295165, - 18.94395881383599, - 0.2774460352908359, - 0.006370146968834419, - 0.0001723998291249837, - 5.107296317860276e-06, - 1.604777817329493e-07, - 5.250570197789137e-09, - 1.7627100085220441e-10, - 8.299580188839222e-12, - 1.3638010174981416e-12, - 1.8194304387071072e-12, - 1.4210854715202004e-13 + 4210.012513297426, + 18.94395881396768, + 0.2774460352951181, + 0.006370146969042845, + 0.0001723998292007749, + 5.107296469442726e-06, + 1.604777438373367e-07, + 5.250721780239432e-09, + 1.7634679207735214e-10, + 8.280632382552295e-12, + 1.4395922426458757e-12, + 2.0278563078634133e-12, + 1.7053025658242404e-13 ], - "xmax": 339.0831918883109, - "xmin": 339.0660267171595 + "xmax": 339.08319188831194, + "xmin": 339.0660267171605 }, { "coef": [ - 4257.9814953312725, - 29.42175817390389, - 0.7061697031966023, - 0.026568085502352925, + 4257.98149533391, + 29.421758174157752, + 0.7061697032105858, + 0.026568085502978202, 0.0011821002202427634, - 5.775762271833721e-05, - 3.0009095244067526e-06, - 1.629407133905528e-07, - 9.129317721972813e-09, - 5.27412804357835e-10, - 1.8056643030478657e-11, - -3.5905476552772376e-11, - 1.0459189070388675e-11 + 5.775762277518063e-05, + 3.0009095812501715e-06, + 1.6294059970371508e-07, + 9.129431408810534e-09, + 5.272422741012527e-10, + 1.8056643030478647e-11, + -3.5905476552772364e-11, + 1.057287590811029e-11 ], - "xmax": 339.10607878317944, - "xmin": 339.0831918883109 + "xmax": 339.10607878318046, + "xmin": 339.08319188831194 }, { "coef": [ - 4323.7916141157675, - 36.7924143674036, - 1.195683681119627, - 0.06113955748744212, - 0.0037243170499806997, - 0.00025061316212878463, - 1.8007036069947758e-05, - 1.355559012891348e-06, - 1.056239768235229e-07, + 4323.7916141190735, + 36.79241436783453, + 1.1956836811525962, + 0.061139557489886386, + 0.003724317050037543, + 0.00025061316218562805, + 1.800703595626092e-05, + 1.3555590697347668e-06, + 1.0562391998010404e-07, 8.45502364481385e-09, - 6.738588939753361e-10, - 1.0933773040818056e-11, + 6.736883637187536e-10, + 1.093377304081807e-11, 1.7053025658242404e-11 ], - "xmax": 339.12896567804796, - "xmin": 339.10607878317944 + "xmax": 339.128965678049, + "xmin": 339.10607878318046 }, { "coef": [ - 4376.500908019807, - 14.860722569749802, - 0.20920734073454497, - 0.004668165547022623, - 0.0001251137276565846, - 3.7245888140073384e-06, - 1.1876924446779399e-07, - 3.994748281447886e-09, - 1.3543768955956378e-10, - -4.517034040860064e-11, - -6.45455193210619e-13, - -2.1011887392757233e-11, - -7.389644451905042e-13 + 4376.500908023797, + 14.860722569973785, + 0.20920734074231356, + 0.004668165547325788, + 0.00012511372775132366, + 3.7245886055814694e-06, + 1.1876911183314999e-07, + 3.994994602929616e-09, + 1.353050549155552e-10, + -4.503770576459207e-11, + -8.349332560799964e-13, + -2.104978300533109e-11, + -6.252776074688882e-13 ], - "xmax": 339.1365946430042, - "xmin": 339.12896567804796 + "xmax": 339.1365946430052, + "xmin": 339.128965678049 }, { "coef": [ - 4420.529030035303, - 29.81345954937759, - 0.9013500822333437, - 0.04369616169846935, - 0.0025680928249381973, - 0.00016849533212492745, - 1.1868587457832556e-05, - 8.779488415136336e-07, - 6.728820623110663e-08, - 5.2989069779039306e-09, - 4.266463868509565e-10, - 3.2136846774624956e-11, - 2.7284841053187847e-12 + 4420.529030040064, + 29.813459549954683, + 0.9013500822752751, + 0.04369616170133046, + 0.0025680928249760928, + 0.00016849533214387523, + 1.1868587552571587e-05, + 8.779483488706702e-07, + 6.728813043988149e-08, + 5.298925925710218e-09, + 4.267411258823912e-10, + 3.232632483749434e-11, + 2.8137492336099967e-12 ], - "xmax": 339.14946852136774, - "xmin": 339.1365946430042 + "xmax": 339.14946852136876, + "xmin": 339.1365946430052 }, { "coef": [ - 4463.013547341966, - 11.874130264372887, - 0.15404050703157496, - 0.0032541270984076075, - 8.414412460739146e-05, - 2.43886849843005e-06, - 7.598223633937489e-08, - 2.4889665295933563e-09, - 8.291395676390239e-11, - 5.079655632628412e-12, - 1.4573375363645097e-12, - 8.035513413390429e-12, - 2.5579538487363607e-13 + 4463.013547347634, + 11.874130264666748, + 0.15404050704097308, + 0.0032541270988434073, + 8.414412445580902e-05, + 2.4388685931690813e-06, + 7.598219844376232e-08, + 2.4889475817870693e-09, + 8.28192177324677e-11, + 5.174394664063117e-12, + 1.3625985049298048e-12, + 8.243939282546749e-12, + 1.9895196601282805e-13 ], - "xmax": 339.1537598141556, - "xmin": 339.14946852136774 + "xmax": 339.1537598141566, + "xmin": 339.14946852136876 }, { "coef": [ - 4492.785205163909, - 18.108654821259393, - 0.3812311266266857, - 0.013265636939822278, - 0.000569155847072645, - 2.7434903417477402e-05, - 1.422027024156775e-06, - 7.73720802753113e-08, - 4.3293635572600885e-09, - 2.5221600292103753e-10, - -1.392839105653031e-11, - 6.197686091460421e-12, - 3.0183855415089056e-11 + 4492.785205170402, + 18.10865482180638, + 0.38123112665484216, + 0.013265636941281259, + 0.000569155846977906, + 2.7434903341686178e-05, + 1.4220267020440684e-06, + 7.737183395382956e-08, + 4.3295530353229576e-09, + 2.52083368277029e-10, + -1.3852599831382595e-11, + 6.235581704034321e-12, + 3.029754225281067e-11 ], - "xmax": 339.1594815378727, - "xmin": 339.1537598141556 + "xmax": 339.1594815378737, + "xmin": 339.1537598141566 }, { "coef": [ - 4532.704054260577, - 22.009184499476934, - 0.6222277773518935, - 0.029808450061070392, - 0.0017769905865046784, - 0.00011923178533571651, - 8.600321619167271e-06, - 6.511587590578245e-07, - 5.1022878222039384e-08, - 4.106029439088938e-09, - 3.4441235378030435e-10, - 1.4353155372087165e-10, - 8.952838470577262e-12 + 4532.704054268481, + 22.009184500372765, + 0.6222277774162591, + 0.029808450065883133, + 0.0017769905864667827, + 0.00011923178543045555, + 8.600321694958497e-06, + 6.511587969534372e-07, + 5.1022897169845673e-08, + 4.106010491282651e-09, + 3.4437445816773046e-10, + 1.4362629275230637e-10, + 9.038103598868474e-12 ], - "xmax": 339.16520326158985, - "xmin": 339.1594815378727 + "xmax": 339.1652032615909, + "xmin": 339.1594815378737 }, { "coef": [ - 4563.934461896657, - 8.671218119601484, - 0.10612933068117794, - 0.0022505820109228534, - 5.9719556169811955e-05, - 1.7837517345194972e-06, - 5.724874820789807e-08, - 1.9213854737205442e-09, - 6.54625457212782e-11, - 4.852763409541313e-12, - 7.178916388178722e-13, - -1.7486700202756238e-11, - -5.115907697472721e-13 + 4563.934461905968, + 8.671218120058183, + 0.10612933069576774, + 0.002250582011510235, + 5.971955643508124e-05, + 1.783751526093628e-06, + 5.7248615573254056e-08, + 1.9214044215268313e-09, + 6.544359791499122e-11, + 4.58749412152425e-12, + 8.126306702525111e-13, + -1.7354065558747645e-11, + -3.410605131648481e-13 ], - "xmax": 339.1671105028289, - "xmin": 339.16520326158985 + "xmax": 339.1671105028299, + "xmin": 339.1652032615909 }, { "coef": [ - 4589.295406235684, - 17.01064334496234, - 0.44919439907452147, - 0.02099179791044731, - 0.0012320007383339016, - 8.13736478660376e-05, - 5.771354928348931e-06, - 4.29344502897972e-07, - 3.2984054761958086e-08, - 2.6053824131183693e-09, - 1.6630269053462963e-10, - 1.14788015732066e-10, - 5.6417093219351955e-11 - ], - "xmax": 339.17032897241984, - "xmin": 339.1671105028289 - }, - { - "coef": [ - 4613.332477133911, - 6.629202276111189, - 0.07580611395968381, - 0.001565084044275498, - 4.065215364098735e-05, - 1.1874093980604348e-06, - 3.733987105265533e-08, - 1.3339468732274253e-09, - -2.001124625984798e-11, - -1.6444564794347402e-10, - -6.162062886595945e-11, - -2.9897275499941453e-11, - 5.7838178690872155e-11 - ], - "xmax": 339.1714017956168, - "xmin": 339.17032897241984 - }, - { - "coef": [ - 4629.814154367324, - 9.955423273277937, - 0.1864986659827323, - 0.006401099831144619, - 0.0002765945616615693, - 1.3432008096059448e-05, - 6.997752066138364e-07, - 3.836068890335263e-08, - 2.162586498585378e-09, - 1.2808959466746357e-10, - 1.5667411631519903e-11, - 1.8658147267523502e-10, + 4589.295406245853, + 17.010643345380764, + 0.4491943991659257, + 0.02099179791988332, + 0.0012320007945520429, + 8.137375836964387e-05, + 5.77125721451191e-06, + 4.292754381440561e-07, + 3.3030325304910784e-08, + 2.6104414773969812e-09, + 2.167796464830271e-10, + 1.236555890743521e-10, 6.934897101018578e-12 ], - "xmax": 339.17283222654606, - "xmin": 339.1714017956168 + "xmax": 339.17032897242075, + "xmin": 339.1671105028299 }, { "coef": [ - 4651.532132671527, - 11.858898962517232, - 0.3031966326702193, - 0.014477722053359473, - 0.0008703543235785521, - 5.8755796831307394e-05, - 4.2537249075696875e-06, - 3.228450989506543e-07, - 2.5320955258632502e-08, - 1.8184803291093998e-09, - 1.5290628040228287e-10, - -6.985804544664237e-11, - -3.097966327914037e-12 + 4613.332477145158, + 6.629202276625887, + 0.07580611397590313, + 0.001565084045052358, + 4.065215360309174e-05, + 1.1874094359560474e-06, + 3.73397763136239e-08, + 1.3338710820022776e-09, + -1.9935455034700286e-11, + -1.6463512600634334e-10, + -6.177221131625498e-11, + -3.0029910143949956e-11, + 5.7696070143720135e-11 ], - "xmax": 339.17426265747537, - "xmin": 339.17283222654606 + "xmax": 339.1714017956177, + "xmin": 339.17032897242075 }, { "coef": [ - 4668.2622406484825, - 4.603238584620369, - 0.05170854643911793, - 0.001099458604341684, + 4629.814154380017, + 9.955423274485689, + 0.1864986660479317, + 0.0064011000212290114, + 0.0002765945716091676, + 1.3432076706066013e-05, + 6.99775377144093e-07, + 3.829202205336878e-08, + 2.1528662739601797e-09, + -5.92663138977596e-11, + -1.1582403512793244e-12, + -6.961181613042665e-11, + -2.6716406864579767e-12 + ], + "xmax": 339.17283222654703, + "xmin": 339.1714017956177 + }, + { + "coef": [ + 4651.532132687609, + 11.858898964165276, + 0.3031966327884157, + 0.014477722062776532, + 0.0008703543246775249, + 5.875579692604643e-05, + 4.2537249265174935e-06, + 3.2284479578575374e-07, + 2.532108789327651e-08, + 1.8184045378842521e-09, + 1.5286838478970893e-10, + -6.982014983406843e-11, + -3.240074875066057e-12 + ], + "xmax": 339.17426265747633, + "xmin": 339.17283222654703 + }, + { + "coef": [ + 4668.262240666056, + 4.6032385854105495, + 0.05170854646458378, + 0.0010994586053080222, 2.9407112565828185e-05, - 8.826226981493048e-07, - 2.8401432651492347e-08, - 8.945854044097483e-10, - 3.0313863874458854e-11, - 3.5648137665827218e-12, - 1.2668768365859593e-12, - 8.931730801247453e-13, - -5.684341886080802e-14 + 8.826228118361425e-07, + 2.8401375808073486e-08, + 8.946422478286092e-10, + 3.0370707293319585e-11, + 3.4511269288611837e-12, + 9.258163234210335e-13, + 1.063703336707247e-12, + -2.842170943040401e-14 ], - "xmax": 339.1747394677851, - "xmin": 339.17426265747537 + "xmax": 339.1747394677861, + "xmin": 339.17426265747633 }, { "coef": [ - 4684.864884142157, - 12.353733614189293, - 0.4341972145840763, - 0.02930127660782282, - 0.0024858487700093056, - 0.0002365687330844603, - 2.413512176453785e-05, - 2.5804091998006925e-06, - 2.851716821159926e-07, - 3.203375135947224e-08, - 3.610369184548316e-09, - 3.932264926561141e-10, - 1.5728573998785578e-10 + 4684.864884164573, + 12.353733617354562, + 0.4341972149051279, + 0.02930127664437314, + 0.0024858487743294054, + 0.0002365687339371116, + 2.4135121935068107e-05, + 2.5804092566441114e-06, + 2.8517190948966805e-07, + 3.2033637672634516e-08, + 3.610255497710594e-09, + 3.9316964923725333e-10, + 1.5722889656899497e-10 ], - "xmax": 339.1758122909821, - "xmin": 339.1747394677851 + "xmax": 339.17581229098306, + "xmin": 339.1747394677861 }, { "coef": [ - 4702.736303532016, - 5.139915154292664, - 0.09151140696612199, - 0.003165121659191961, - 0.00013739377216577214, - 6.685439229592697e-06, - 3.48661233395438e-07, - 1.8695443238351937e-08, - 1.0762894571651948e-09, - 4.502405563418045e-10, - 2.025242156910346e-11, - 4.7391246875258075e-11, - 1.6484591469634324e-12 + 4702.736303561654, + 5.139915157337576, + 0.09151140698643404, + 0.00316512204451455, + 0.00013739367032131335, + 6.685995821402376e-06, + 3.4896292036713857e-07, + 1.896850007475297e-08, + 9.35791473547564e-10, + 5.4932473777458725e-11, + -1.3388798257512105e-10, + -6.6541912328088e-11, + 1.3355361261346843e-10 ], - "xmax": 339.17616989871436, - "xmin": 339.1758122909821 + "xmax": 339.1761698987154, + "xmin": 339.17581229098306 }, { "coef": [ - 4716.102135397969, - 8.408757168815747, - 0.2965464102086126, - 0.020506867306061344, - 0.0017785467208350874, - 0.00017289906579566922, - 1.8014382795676302e-05, - 1.9665072490588308e-06, - 2.2202718906011888e-07, - 2.5714904446412222e-08, - 3.0393389843275124e-09, - 3.7217564202274137e-10, - 4.439471013029106e-11 + 4716.102135434325, + 8.408757173968187, + 0.29654641074421023, + 0.02050686736811541, + 0.0017785467283573666, + 0.00017289906679990294, + 1.801438281462411e-05, + 1.9665072869544436e-06, + 2.2202720800792515e-07, + 2.571448759467391e-08, + 3.0392442452960774e-09, + 3.7204300737873294e-10, + 4.4508396968012676e-11 ], - "xmax": 339.1766467090241, - "xmin": 339.17616989871436 + "xmax": 339.17664670902514, + "xmin": 339.1761698987154 }, { "coef": [ - 4730.8944533225795, - 6.266175270290739, - 0.21509786312262894, - 0.01459120868454332, - 0.001240013873917604, - 0.00011809031800478963, - 1.2052652074060708e-05, - 1.2892664576899984e-06, - 1.423306125327802e-07, - 1.613644738584088e-08, - 1.599210889500965e-09, - -5.077604039545902e-10, - 1.9670665096782614e-10 + 4730.894453370727, + 6.266175276932191, + 0.2150978638000509, + 0.01459120876131983, + 0.001240013883202029, + 0.00011809031923639704, + 1.2052652206695353e-05, + 1.28926655242903e-06, + 1.423306314805865e-07, + 1.6136428438034596e-08, + 1.5992866807261124e-09, + -5.078361951797377e-10, + 1.964224338735221e-10 ], - "xmax": 339.1769149148233, - "xmin": 339.1766467090241 + "xmax": 339.17691491482435, + "xmin": 339.17664670902514 }, { "coef": [ - 4739.943468416923, - 2.5957293488720015, - 0.04546322683068796, - 0.0015784428350145957, - 6.859290027408653e-05, - 3.3396117403411035e-06, - 1.7418323908506242e-07, - 8.744453464066129e-09, - 5.093140659602513e-10, - 3.3540584160465196e-11, - 3.006720154477897e-11, - 7.729029332829951e-10, + 4739.943468476446, + 2.5957293530467145, + 0.04546322704820878, + 0.0015784428477096258, + 6.859290127832026e-05, + 3.3396118729757473e-06, + 1.7418299276358068e-07, + 8.744415568453555e-09, + 5.092951181539641e-10, + 3.3559531966752386e-11, + 3.010509715735259e-11, + 7.729218810892823e-10, 2.7000623958883807e-11 ], - "xmax": 339.17700431675644, - "xmin": 339.1769149148233 + "xmax": 339.17700431675746, + "xmin": 339.17691491482435 }, { "coef": [ - 4746.682764990673, - 4.234643152818481, - 0.14761555932784332, - 0.010235963740004343, - 0.0008883878634234964, - 8.638737409982123e-05, - 9.002224655170077e-06, - 9.8330588415475e-07, - 1.1100507591553829e-07, - 1.2858439084728204e-08, - 1.5274933605650892e-09, - 2.8956336673949975e-10, - 2.9530156098189764e-11 + 4746.682765063662, + 4.234643159611232, + 0.14761556015444138, + 0.010235963851493236, + 0.0008883880007382486, + 8.638916184429222e-05, + 9.002389595823806e-06, + 9.838854786012611e-07, + 1.1104723478452672e-07, + 1.2871077271521589e-08, + 1.6055204268546913e-09, + 1.391946736513437e-09, + 1.0606981959426776e-10 ], - "xmax": 339.1771235193339, - "xmin": 339.17700431675644 + "xmax": 339.1771235193349, + "xmin": 339.17700431675746 }, { "coef": [ - 4755.305486559639, - 4.434366103248771, - 0.22547239655236884, - 0.022899617686925163, - 0.002911516225800219, - 0.00041484795925649925, - 6.33520195727531e-05, - 1.0137611206269161e-05, - 1.6776793707638505e-06, - 2.847948159480651e-07, - 4.93319369841416e-08, - 8.632945687371296e-09, - 1.514138148195343e-09 + 4755.305486651302, + 4.434366122088195, + 0.22547239943594075, + 0.02289961817666911, + 0.002911516313187502, + 0.00041484797549476925, + 6.335202271808895e-05, + 1.0137612039972637e-05, + 1.677679276024819e-06, + 2.847948538436777e-07, + 4.933184224511016e-08, + 8.632813052727287e-09, + 1.5141097264859127e-09 ], - "xmax": 339.17721292126697, - "xmin": 339.1771235193339 + "xmax": 339.17721292126794, + "xmin": 339.1771235193349 }, { "coef": [ - 4762.045029185438, - 2.122411911467986, - 0.07372017779804381, - 0.005115863721038487, - 0.00044408490399590794, - 4.3188085407301125e-05, - 4.500502121381424e-06, - 4.89644229865525e-07, - 5.5360238356507225e-08, - 6.411845980046009e-09, - 7.251294750227412e-10, - -3.867974459632118e-10, - -2.205524651799351e-11 + 4762.045029324094, + 2.122411930825235, + 0.07372017981733048, + 0.00511586395525232, + 0.0004440849326828867, + 4.3188089007384315e-05, + 4.500502614024388e-06, + 4.896444193435879e-07, + 5.536044678237638e-08, + 6.411864927852297e-09, + 7.253379008918969e-10, + -3.872900889266716e-10, + -2.2168933355715126e-11 ], - "xmax": 339.17724272191134, - "xmin": 339.17721292126697 + "xmax": 339.1772427219123, + "xmin": 339.17721292126794 }, { "coef": [ - 4767.266623592946, - 3.250364547259478, - 0.26726282604853846, - 0.044211103931088534, - 0.00916928674060267, - 0.0021330580205313394, - 0.0005321111244301705, - 0.00013913347809881593, - 3.763620846251293e-05, - 1.0449811027288475e-05, - 2.978072886830391e-06, - 9.227921237339119e-07, - 2.4779160412435886e-07 + 4767.266623813108, + 3.2503646218061926, + 0.2672628447748259, + 0.04421110914582799, + 0.009169288263911555, + 0.002133058477760853, + 0.0005321112642839287, + 0.00013913352150824013, + 3.763622218072468e-05, + 1.0449815328440502e-05, + 2.978074611080763e-06, + 9.227925595334566e-07, + 2.4779177465461544e-07 ], - "xmax": 339.1772725225557, - "xmin": 339.17724272191134 + "xmax": 339.1772725225567, + "xmin": 339.1772427219123 }, { "coef": [ - 4773.2438222568635, - 2.8121966925589117, - 0.5723943018234808, - 0.2524749588120427, - 0.146075505868639, - 0.09798728391073847, - 0.0724074720219095, - 0.057418304913865174, - 0.048133232713910186, - 0.04226430082620263, - 0.03864832933324342, - 0.03667580306846057, - 0.01802413968118799 + 4773.2438229757745, + 2.8121972828957604, + 0.5723945870865698, + 0.2524750622117943, + 0.1460754956489502, + 0.09798717975027035, + 0.07240730733977965, + 0.057418102918710946, + 0.04813299521513339, + 0.0422640409424496, + 0.03864804875158891, + 0.036675515041076114, + 0.01802398899229729 ], - "xmax": 339.1772824561038, - "xmin": 339.1772725225557 + "xmax": 339.1772824561048, + "xmin": 339.1772725225567 } ], "meta": { - "BrhoL / mol/m^3": 28926.160277529994, - "BrhoV / mol/m^3": -28174.531847067567, + "BrhoL / mol/m^3": 28926.16027752828, + "BrhoV / mol/m^3": -28174.531847068847, "Tcrit / K": 339.173, - "Tcrittrue / K": 339.1772824561038, + "Tcrittrue / K": 339.1772824561048, "Treducing / K": 339.173, "Ttriple / K": 172.52, "gas_constant / J/mol/K": 8.314472, - "rhocrittrue / mol/m^3": 4777.43852258239 + "rhocrittrue / mol/m^3": 4777.438522582564 } } } diff --git a/dev/fluids/R1336mzz(E).json b/dev/fluids/R1336mzz(E).json index da9ebe7e..d810a790 100644 --- a/dev/fluids/R1336mzz(E).json +++ b/dev/fluids/R1336mzz(E).json @@ -3798,7 +3798,8 @@ "R1336mzz(E)", "(E)-1,1,1,4,4,4-Hexafluoro-2-butene", "R1336MZZ(E)", - "(e)-1,1,1,4,4,4-hexafluoro-2-butene" + "(e)-1,1,1,4,4,4-hexafluoro-2-butene", + "R1336MZZE" ], "CAS": "66711-86-2", "CHEMSPIDER_ID": -1, @@ -3816,7 +3817,7 @@ "FORMULA": "C_{4}H_{2}F_{6}", "INCHI_KEY": "NLOLSXYRJFEOTA-OWOJBTEDSA-N", "INCHI_STRING": "InChI=1S/C4H2F6/c5-3(6,7)1-2-4(8,9)10/h1-2H/b2-1+", - "NAME": "R1336MZZE", + "NAME": "R1336mzz(E)", "REFPROP_NAME": "R1336MZZE", "SMILES": "?" }, diff --git a/dev/scripts/inject_superancillary.py b/dev/scripts/inject_superancillary.py index be2b0f85..9792f360 100644 --- a/dev/scripts/inject_superancillary.py +++ b/dev/scripts/inject_superancillary.py @@ -1,13 +1,16 @@ from pathlib import Path import json -FLUIDS = Path(__file__).parent / 'fluids' +FLUIDS = Path(__file__).parent.parent / 'fluids' +print(FLUIDS) assert(FLUIDS.exists()) -FASTCHEB_OUT = Path(r"D:\Code\fastchebpure") +FASTCHEB_OUT = Path(r"/Users/ianbell/Documents/Code/fastchebpure/output") +assert(FASTCHEB_OUT.exists()) for path in FASTCHEB_OUT.glob('*.json'): + print(path) name = path.stem.replace('_exps','') contents = json.load(path.open()) destpath = FLUIDS / f'{name}.json' dest = json.load(destpath.open()) dest['EOS'][0]['SUPERANCILLARY'] = contents with destpath.open('w') as fp: - fp.write(json.dumps(dest, indent=2)) \ No newline at end of file + fp.write(json.dumps(dest, indent=2)) diff --git a/externals/nlohmann-json/nlohmann/json.hpp b/externals/nlohmann-json/nlohmann/json.hpp new file mode 100644 index 00000000..8b72ea65 --- /dev/null +++ b/externals/nlohmann-json/nlohmann/json.hpp @@ -0,0 +1,24765 @@ +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.3 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann +// SPDX-License-Identifier: MIT + +/****************************************************************************\ + * Note on documentation: The source files contain links to the online * + * documentation of the public API at https://json.nlohmann.me. This URL * + * contains the most recent documentation and should also be applicable to * + * previous versions; documentation for deprecated functions is not * + * removed, but marked deprecated. See "Generate documentation" section in * + * file docs/README.md. * +\****************************************************************************/ + +#ifndef INCLUDE_NLOHMANN_JSON_HPP_ +#define INCLUDE_NLOHMANN_JSON_HPP_ + +#include // all_of, find, for_each +#include // nullptr_t, ptrdiff_t, size_t +#include // hash, less +#include // initializer_list +#ifndef JSON_NO_IO + #include // istream, ostream +#endif // JSON_NO_IO +#include // random_access_iterator_tag +#include // unique_ptr +#include // string, stoi, to_string +#include // declval, forward, move, pair, swap +#include // vector + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.3 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +#include + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.3 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +// This file contains all macro definitions affecting or depending on the ABI + +#ifndef JSON_SKIP_LIBRARY_VERSION_CHECK + #if defined(NLOHMANN_JSON_VERSION_MAJOR) && defined(NLOHMANN_JSON_VERSION_MINOR) && defined(NLOHMANN_JSON_VERSION_PATCH) + #if NLOHMANN_JSON_VERSION_MAJOR != 3 || NLOHMANN_JSON_VERSION_MINOR != 11 || NLOHMANN_JSON_VERSION_PATCH != 3 + #warning "Already included a different version of the library!" + #endif + #endif +#endif + +#define NLOHMANN_JSON_VERSION_MAJOR 3 // NOLINT(modernize-macro-to-enum) +#define NLOHMANN_JSON_VERSION_MINOR 11 // NOLINT(modernize-macro-to-enum) +#define NLOHMANN_JSON_VERSION_PATCH 3 // NOLINT(modernize-macro-to-enum) + +#ifndef JSON_DIAGNOSTICS + #define JSON_DIAGNOSTICS 0 +#endif + +#ifndef JSON_USE_LEGACY_DISCARDED_VALUE_COMPARISON + #define JSON_USE_LEGACY_DISCARDED_VALUE_COMPARISON 0 +#endif + +#if JSON_DIAGNOSTICS + #define NLOHMANN_JSON_ABI_TAG_DIAGNOSTICS _diag +#else + #define NLOHMANN_JSON_ABI_TAG_DIAGNOSTICS +#endif + +#if JSON_USE_LEGACY_DISCARDED_VALUE_COMPARISON + #define NLOHMANN_JSON_ABI_TAG_LEGACY_DISCARDED_VALUE_COMPARISON _ldvcmp +#else + #define NLOHMANN_JSON_ABI_TAG_LEGACY_DISCARDED_VALUE_COMPARISON +#endif + +#ifndef NLOHMANN_JSON_NAMESPACE_NO_VERSION + #define NLOHMANN_JSON_NAMESPACE_NO_VERSION 0 +#endif + +// Construct the namespace ABI tags component +#define NLOHMANN_JSON_ABI_TAGS_CONCAT_EX(a, b) json_abi ## a ## b +#define NLOHMANN_JSON_ABI_TAGS_CONCAT(a, b) \ + NLOHMANN_JSON_ABI_TAGS_CONCAT_EX(a, b) + +#define NLOHMANN_JSON_ABI_TAGS \ + NLOHMANN_JSON_ABI_TAGS_CONCAT( \ + NLOHMANN_JSON_ABI_TAG_DIAGNOSTICS, \ + NLOHMANN_JSON_ABI_TAG_LEGACY_DISCARDED_VALUE_COMPARISON) + +// Construct the namespace version component +#define NLOHMANN_JSON_NAMESPACE_VERSION_CONCAT_EX(major, minor, patch) \ + _v ## major ## _ ## minor ## _ ## patch +#define NLOHMANN_JSON_NAMESPACE_VERSION_CONCAT(major, minor, patch) \ + NLOHMANN_JSON_NAMESPACE_VERSION_CONCAT_EX(major, minor, patch) + +#if NLOHMANN_JSON_NAMESPACE_NO_VERSION +#define NLOHMANN_JSON_NAMESPACE_VERSION +#else +#define NLOHMANN_JSON_NAMESPACE_VERSION \ + NLOHMANN_JSON_NAMESPACE_VERSION_CONCAT(NLOHMANN_JSON_VERSION_MAJOR, \ + NLOHMANN_JSON_VERSION_MINOR, \ + NLOHMANN_JSON_VERSION_PATCH) +#endif + +// Combine namespace components +#define NLOHMANN_JSON_NAMESPACE_CONCAT_EX(a, b) a ## b +#define NLOHMANN_JSON_NAMESPACE_CONCAT(a, b) \ + NLOHMANN_JSON_NAMESPACE_CONCAT_EX(a, b) + +#ifndef NLOHMANN_JSON_NAMESPACE +#define NLOHMANN_JSON_NAMESPACE \ + nlohmann::NLOHMANN_JSON_NAMESPACE_CONCAT( \ + NLOHMANN_JSON_ABI_TAGS, \ + NLOHMANN_JSON_NAMESPACE_VERSION) +#endif + +#ifndef NLOHMANN_JSON_NAMESPACE_BEGIN +#define NLOHMANN_JSON_NAMESPACE_BEGIN \ + namespace nlohmann \ + { \ + inline namespace NLOHMANN_JSON_NAMESPACE_CONCAT( \ + NLOHMANN_JSON_ABI_TAGS, \ + NLOHMANN_JSON_NAMESPACE_VERSION) \ + { +#endif + +#ifndef NLOHMANN_JSON_NAMESPACE_END +#define NLOHMANN_JSON_NAMESPACE_END \ + } /* namespace (inline namespace) NOLINT(readability/namespace) */ \ + } // namespace nlohmann +#endif + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.3 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +#include // transform +#include // array +#include // forward_list +#include // inserter, front_inserter, end +#include // map +#include // string +#include // tuple, make_tuple +#include // is_arithmetic, is_same, is_enum, underlying_type, is_convertible +#include // unordered_map +#include // pair, declval +#include // valarray + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.3 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +#include // nullptr_t +#include // exception +#if JSON_DIAGNOSTICS + #include // accumulate +#endif +#include // runtime_error +#include // to_string +#include // vector + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.3 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +#include // array +#include // size_t +#include // uint8_t +#include // string + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.3 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +#include // declval, pair +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.3 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +#include + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.3 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +// #include + + +NLOHMANN_JSON_NAMESPACE_BEGIN +namespace detail +{ + +template struct make_void +{ + using type = void; +}; +template using void_t = typename make_void::type; + +} // namespace detail +NLOHMANN_JSON_NAMESPACE_END + + +NLOHMANN_JSON_NAMESPACE_BEGIN +namespace detail +{ + +// https://en.cppreference.com/w/cpp/experimental/is_detected +struct nonesuch +{ + nonesuch() = delete; + ~nonesuch() = delete; + nonesuch(nonesuch const&) = delete; + nonesuch(nonesuch const&&) = delete; + void operator=(nonesuch const&) = delete; + void operator=(nonesuch&&) = delete; +}; + +template class Op, + class... Args> +struct detector +{ + using value_t = std::false_type; + using type = Default; +}; + +template class Op, class... Args> +struct detector>, Op, Args...> +{ + using value_t = std::true_type; + using type = Op; +}; + +template class Op, class... Args> +using is_detected = typename detector::value_t; + +template class Op, class... Args> +struct is_detected_lazy : is_detected { }; + +template class Op, class... Args> +using detected_t = typename detector::type; + +template class Op, class... Args> +using detected_or = detector; + +template class Op, class... Args> +using detected_or_t = typename detected_or::type; + +template class Op, class... Args> +using is_detected_exact = std::is_same>; + +template class Op, class... Args> +using is_detected_convertible = + std::is_convertible, To>; + +} // namespace detail +NLOHMANN_JSON_NAMESPACE_END + +// #include + + +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.3 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann +// SPDX-FileCopyrightText: 2016-2021 Evan Nemerson +// SPDX-License-Identifier: MIT + +/* Hedley - https://nemequ.github.io/hedley + * Created by Evan Nemerson + */ + +#if !defined(JSON_HEDLEY_VERSION) || (JSON_HEDLEY_VERSION < 15) +#if defined(JSON_HEDLEY_VERSION) + #undef JSON_HEDLEY_VERSION +#endif +#define JSON_HEDLEY_VERSION 15 + +#if defined(JSON_HEDLEY_STRINGIFY_EX) + #undef JSON_HEDLEY_STRINGIFY_EX +#endif +#define JSON_HEDLEY_STRINGIFY_EX(x) #x + +#if defined(JSON_HEDLEY_STRINGIFY) + #undef JSON_HEDLEY_STRINGIFY +#endif +#define JSON_HEDLEY_STRINGIFY(x) JSON_HEDLEY_STRINGIFY_EX(x) + +#if defined(JSON_HEDLEY_CONCAT_EX) + #undef JSON_HEDLEY_CONCAT_EX +#endif +#define JSON_HEDLEY_CONCAT_EX(a,b) a##b + +#if defined(JSON_HEDLEY_CONCAT) + #undef JSON_HEDLEY_CONCAT +#endif +#define JSON_HEDLEY_CONCAT(a,b) JSON_HEDLEY_CONCAT_EX(a,b) + +#if defined(JSON_HEDLEY_CONCAT3_EX) + #undef JSON_HEDLEY_CONCAT3_EX +#endif +#define JSON_HEDLEY_CONCAT3_EX(a,b,c) a##b##c + +#if defined(JSON_HEDLEY_CONCAT3) + #undef JSON_HEDLEY_CONCAT3 +#endif +#define JSON_HEDLEY_CONCAT3(a,b,c) JSON_HEDLEY_CONCAT3_EX(a,b,c) + +#if defined(JSON_HEDLEY_VERSION_ENCODE) + #undef JSON_HEDLEY_VERSION_ENCODE +#endif +#define JSON_HEDLEY_VERSION_ENCODE(major,minor,revision) (((major) * 1000000) + ((minor) * 1000) + (revision)) + +#if defined(JSON_HEDLEY_VERSION_DECODE_MAJOR) + #undef JSON_HEDLEY_VERSION_DECODE_MAJOR +#endif +#define JSON_HEDLEY_VERSION_DECODE_MAJOR(version) ((version) / 1000000) + +#if defined(JSON_HEDLEY_VERSION_DECODE_MINOR) + #undef JSON_HEDLEY_VERSION_DECODE_MINOR +#endif +#define JSON_HEDLEY_VERSION_DECODE_MINOR(version) (((version) % 1000000) / 1000) + +#if defined(JSON_HEDLEY_VERSION_DECODE_REVISION) + #undef JSON_HEDLEY_VERSION_DECODE_REVISION +#endif +#define JSON_HEDLEY_VERSION_DECODE_REVISION(version) ((version) % 1000) + +#if defined(JSON_HEDLEY_GNUC_VERSION) + #undef JSON_HEDLEY_GNUC_VERSION +#endif +#if defined(__GNUC__) && defined(__GNUC_PATCHLEVEL__) + #define JSON_HEDLEY_GNUC_VERSION JSON_HEDLEY_VERSION_ENCODE(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__) +#elif defined(__GNUC__) + #define JSON_HEDLEY_GNUC_VERSION JSON_HEDLEY_VERSION_ENCODE(__GNUC__, __GNUC_MINOR__, 0) +#endif + +#if defined(JSON_HEDLEY_GNUC_VERSION_CHECK) + #undef JSON_HEDLEY_GNUC_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_GNUC_VERSION) + #define JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_GNUC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_MSVC_VERSION) + #undef JSON_HEDLEY_MSVC_VERSION +#endif +#if defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 140000000) && !defined(__ICL) + #define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_FULL_VER / 10000000, (_MSC_FULL_VER % 10000000) / 100000, (_MSC_FULL_VER % 100000) / 100) +#elif defined(_MSC_FULL_VER) && !defined(__ICL) + #define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_FULL_VER / 1000000, (_MSC_FULL_VER % 1000000) / 10000, (_MSC_FULL_VER % 10000) / 10) +#elif defined(_MSC_VER) && !defined(__ICL) + #define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_VER / 100, _MSC_VER % 100, 0) +#endif + +#if defined(JSON_HEDLEY_MSVC_VERSION_CHECK) + #undef JSON_HEDLEY_MSVC_VERSION_CHECK +#endif +#if !defined(JSON_HEDLEY_MSVC_VERSION) + #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (0) +#elif defined(_MSC_VER) && (_MSC_VER >= 1400) + #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_FULL_VER >= ((major * 10000000) + (minor * 100000) + (patch))) +#elif defined(_MSC_VER) && (_MSC_VER >= 1200) + #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_FULL_VER >= ((major * 1000000) + (minor * 10000) + (patch))) +#else + #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_VER >= ((major * 100) + (minor))) +#endif + +#if defined(JSON_HEDLEY_INTEL_VERSION) + #undef JSON_HEDLEY_INTEL_VERSION +#endif +#if defined(__INTEL_COMPILER) && defined(__INTEL_COMPILER_UPDATE) && !defined(__ICL) + #define JSON_HEDLEY_INTEL_VERSION JSON_HEDLEY_VERSION_ENCODE(__INTEL_COMPILER / 100, __INTEL_COMPILER % 100, __INTEL_COMPILER_UPDATE) +#elif defined(__INTEL_COMPILER) && !defined(__ICL) + #define JSON_HEDLEY_INTEL_VERSION JSON_HEDLEY_VERSION_ENCODE(__INTEL_COMPILER / 100, __INTEL_COMPILER % 100, 0) +#endif + +#if defined(JSON_HEDLEY_INTEL_VERSION_CHECK) + #undef JSON_HEDLEY_INTEL_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_INTEL_VERSION) + #define JSON_HEDLEY_INTEL_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_INTEL_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_INTEL_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_INTEL_CL_VERSION) + #undef JSON_HEDLEY_INTEL_CL_VERSION +#endif +#if defined(__INTEL_COMPILER) && defined(__INTEL_COMPILER_UPDATE) && defined(__ICL) + #define JSON_HEDLEY_INTEL_CL_VERSION JSON_HEDLEY_VERSION_ENCODE(__INTEL_COMPILER, __INTEL_COMPILER_UPDATE, 0) +#endif + +#if defined(JSON_HEDLEY_INTEL_CL_VERSION_CHECK) + #undef JSON_HEDLEY_INTEL_CL_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_INTEL_CL_VERSION) + #define JSON_HEDLEY_INTEL_CL_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_INTEL_CL_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_INTEL_CL_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_PGI_VERSION) + #undef JSON_HEDLEY_PGI_VERSION +#endif +#if defined(__PGI) && defined(__PGIC__) && defined(__PGIC_MINOR__) && defined(__PGIC_PATCHLEVEL__) + #define JSON_HEDLEY_PGI_VERSION JSON_HEDLEY_VERSION_ENCODE(__PGIC__, __PGIC_MINOR__, __PGIC_PATCHLEVEL__) +#endif + +#if defined(JSON_HEDLEY_PGI_VERSION_CHECK) + #undef JSON_HEDLEY_PGI_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_PGI_VERSION) + #define JSON_HEDLEY_PGI_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_PGI_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_PGI_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_SUNPRO_VERSION) + #undef JSON_HEDLEY_SUNPRO_VERSION +#endif +#if defined(__SUNPRO_C) && (__SUNPRO_C > 0x1000) + #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((((__SUNPRO_C >> 16) & 0xf) * 10) + ((__SUNPRO_C >> 12) & 0xf), (((__SUNPRO_C >> 8) & 0xf) * 10) + ((__SUNPRO_C >> 4) & 0xf), (__SUNPRO_C & 0xf) * 10) +#elif defined(__SUNPRO_C) + #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((__SUNPRO_C >> 8) & 0xf, (__SUNPRO_C >> 4) & 0xf, (__SUNPRO_C) & 0xf) +#elif defined(__SUNPRO_CC) && (__SUNPRO_CC > 0x1000) + #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((((__SUNPRO_CC >> 16) & 0xf) * 10) + ((__SUNPRO_CC >> 12) & 0xf), (((__SUNPRO_CC >> 8) & 0xf) * 10) + ((__SUNPRO_CC >> 4) & 0xf), (__SUNPRO_CC & 0xf) * 10) +#elif defined(__SUNPRO_CC) + #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((__SUNPRO_CC >> 8) & 0xf, (__SUNPRO_CC >> 4) & 0xf, (__SUNPRO_CC) & 0xf) +#endif + +#if defined(JSON_HEDLEY_SUNPRO_VERSION_CHECK) + #undef JSON_HEDLEY_SUNPRO_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_SUNPRO_VERSION) + #define JSON_HEDLEY_SUNPRO_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_SUNPRO_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_SUNPRO_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION) + #undef JSON_HEDLEY_EMSCRIPTEN_VERSION +#endif +#if defined(__EMSCRIPTEN__) + #define JSON_HEDLEY_EMSCRIPTEN_VERSION JSON_HEDLEY_VERSION_ENCODE(__EMSCRIPTEN_major__, __EMSCRIPTEN_minor__, __EMSCRIPTEN_tiny__) +#endif + +#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK) + #undef JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION) + #define JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_EMSCRIPTEN_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_ARM_VERSION) + #undef JSON_HEDLEY_ARM_VERSION +#endif +#if defined(__CC_ARM) && defined(__ARMCOMPILER_VERSION) + #define JSON_HEDLEY_ARM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ARMCOMPILER_VERSION / 1000000, (__ARMCOMPILER_VERSION % 1000000) / 10000, (__ARMCOMPILER_VERSION % 10000) / 100) +#elif defined(__CC_ARM) && defined(__ARMCC_VERSION) + #define JSON_HEDLEY_ARM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ARMCC_VERSION / 1000000, (__ARMCC_VERSION % 1000000) / 10000, (__ARMCC_VERSION % 10000) / 100) +#endif + +#if defined(JSON_HEDLEY_ARM_VERSION_CHECK) + #undef JSON_HEDLEY_ARM_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_ARM_VERSION) + #define JSON_HEDLEY_ARM_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_ARM_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_ARM_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_IBM_VERSION) + #undef JSON_HEDLEY_IBM_VERSION +#endif +#if defined(__ibmxl__) + #define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ibmxl_version__, __ibmxl_release__, __ibmxl_modification__) +#elif defined(__xlC__) && defined(__xlC_ver__) + #define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__xlC__ >> 8, __xlC__ & 0xff, (__xlC_ver__ >> 8) & 0xff) +#elif defined(__xlC__) + #define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__xlC__ >> 8, __xlC__ & 0xff, 0) +#endif + +#if defined(JSON_HEDLEY_IBM_VERSION_CHECK) + #undef JSON_HEDLEY_IBM_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_IBM_VERSION) + #define JSON_HEDLEY_IBM_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_IBM_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_IBM_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_VERSION) + #undef JSON_HEDLEY_TI_VERSION +#endif +#if \ + defined(__TI_COMPILER_VERSION__) && \ + ( \ + defined(__TMS470__) || defined(__TI_ARM__) || \ + defined(__MSP430__) || \ + defined(__TMS320C2000__) \ + ) +#if (__TI_COMPILER_VERSION__ >= 16000000) + #define JSON_HEDLEY_TI_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif +#endif + +#if defined(JSON_HEDLEY_TI_VERSION_CHECK) + #undef JSON_HEDLEY_TI_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_VERSION) + #define JSON_HEDLEY_TI_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CL2000_VERSION) + #undef JSON_HEDLEY_TI_CL2000_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__TMS320C2000__) + #define JSON_HEDLEY_TI_CL2000_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CL2000_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CL2000_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CL2000_VERSION) + #define JSON_HEDLEY_TI_CL2000_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL2000_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CL2000_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CL430_VERSION) + #undef JSON_HEDLEY_TI_CL430_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__MSP430__) + #define JSON_HEDLEY_TI_CL430_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CL430_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CL430_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CL430_VERSION) + #define JSON_HEDLEY_TI_CL430_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL430_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CL430_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_ARMCL_VERSION) + #undef JSON_HEDLEY_TI_ARMCL_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && (defined(__TMS470__) || defined(__TI_ARM__)) + #define JSON_HEDLEY_TI_ARMCL_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_ARMCL_VERSION_CHECK) + #undef JSON_HEDLEY_TI_ARMCL_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_ARMCL_VERSION) + #define JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_ARMCL_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CL6X_VERSION) + #undef JSON_HEDLEY_TI_CL6X_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__TMS320C6X__) + #define JSON_HEDLEY_TI_CL6X_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CL6X_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CL6X_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CL6X_VERSION) + #define JSON_HEDLEY_TI_CL6X_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL6X_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CL6X_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CL7X_VERSION) + #undef JSON_HEDLEY_TI_CL7X_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__C7000__) + #define JSON_HEDLEY_TI_CL7X_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CL7X_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CL7X_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CL7X_VERSION) + #define JSON_HEDLEY_TI_CL7X_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL7X_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CL7X_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CLPRU_VERSION) + #undef JSON_HEDLEY_TI_CLPRU_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__PRU__) + #define JSON_HEDLEY_TI_CLPRU_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CLPRU_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CLPRU_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CLPRU_VERSION) + #define JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CLPRU_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_CRAY_VERSION) + #undef JSON_HEDLEY_CRAY_VERSION +#endif +#if defined(_CRAYC) + #if defined(_RELEASE_PATCHLEVEL) + #define JSON_HEDLEY_CRAY_VERSION JSON_HEDLEY_VERSION_ENCODE(_RELEASE_MAJOR, _RELEASE_MINOR, _RELEASE_PATCHLEVEL) + #else + #define JSON_HEDLEY_CRAY_VERSION JSON_HEDLEY_VERSION_ENCODE(_RELEASE_MAJOR, _RELEASE_MINOR, 0) + #endif +#endif + +#if defined(JSON_HEDLEY_CRAY_VERSION_CHECK) + #undef JSON_HEDLEY_CRAY_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_CRAY_VERSION) + #define JSON_HEDLEY_CRAY_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_CRAY_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_CRAY_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_IAR_VERSION) + #undef JSON_HEDLEY_IAR_VERSION +#endif +#if defined(__IAR_SYSTEMS_ICC__) + #if __VER__ > 1000 + #define JSON_HEDLEY_IAR_VERSION JSON_HEDLEY_VERSION_ENCODE((__VER__ / 1000000), ((__VER__ / 1000) % 1000), (__VER__ % 1000)) + #else + #define JSON_HEDLEY_IAR_VERSION JSON_HEDLEY_VERSION_ENCODE(__VER__ / 100, __VER__ % 100, 0) + #endif +#endif + +#if defined(JSON_HEDLEY_IAR_VERSION_CHECK) + #undef JSON_HEDLEY_IAR_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_IAR_VERSION) + #define JSON_HEDLEY_IAR_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_IAR_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_IAR_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TINYC_VERSION) + #undef JSON_HEDLEY_TINYC_VERSION +#endif +#if defined(__TINYC__) + #define JSON_HEDLEY_TINYC_VERSION JSON_HEDLEY_VERSION_ENCODE(__TINYC__ / 1000, (__TINYC__ / 100) % 10, __TINYC__ % 100) +#endif + +#if defined(JSON_HEDLEY_TINYC_VERSION_CHECK) + #undef JSON_HEDLEY_TINYC_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TINYC_VERSION) + #define JSON_HEDLEY_TINYC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TINYC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TINYC_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_DMC_VERSION) + #undef JSON_HEDLEY_DMC_VERSION +#endif +#if defined(__DMC__) + #define JSON_HEDLEY_DMC_VERSION JSON_HEDLEY_VERSION_ENCODE(__DMC__ >> 8, (__DMC__ >> 4) & 0xf, __DMC__ & 0xf) +#endif + +#if defined(JSON_HEDLEY_DMC_VERSION_CHECK) + #undef JSON_HEDLEY_DMC_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_DMC_VERSION) + #define JSON_HEDLEY_DMC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_DMC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_DMC_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_COMPCERT_VERSION) + #undef JSON_HEDLEY_COMPCERT_VERSION +#endif +#if defined(__COMPCERT_VERSION__) + #define JSON_HEDLEY_COMPCERT_VERSION JSON_HEDLEY_VERSION_ENCODE(__COMPCERT_VERSION__ / 10000, (__COMPCERT_VERSION__ / 100) % 100, __COMPCERT_VERSION__ % 100) +#endif + +#if defined(JSON_HEDLEY_COMPCERT_VERSION_CHECK) + #undef JSON_HEDLEY_COMPCERT_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_COMPCERT_VERSION) + #define JSON_HEDLEY_COMPCERT_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_COMPCERT_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_COMPCERT_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_PELLES_VERSION) + #undef JSON_HEDLEY_PELLES_VERSION +#endif +#if defined(__POCC__) + #define JSON_HEDLEY_PELLES_VERSION JSON_HEDLEY_VERSION_ENCODE(__POCC__ / 100, __POCC__ % 100, 0) +#endif + +#if defined(JSON_HEDLEY_PELLES_VERSION_CHECK) + #undef JSON_HEDLEY_PELLES_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_PELLES_VERSION) + #define JSON_HEDLEY_PELLES_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_PELLES_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_PELLES_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_MCST_LCC_VERSION) + #undef JSON_HEDLEY_MCST_LCC_VERSION +#endif +#if defined(__LCC__) && defined(__LCC_MINOR__) + #define JSON_HEDLEY_MCST_LCC_VERSION JSON_HEDLEY_VERSION_ENCODE(__LCC__ / 100, __LCC__ % 100, __LCC_MINOR__) +#endif + +#if defined(JSON_HEDLEY_MCST_LCC_VERSION_CHECK) + #undef JSON_HEDLEY_MCST_LCC_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_MCST_LCC_VERSION) + #define JSON_HEDLEY_MCST_LCC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_MCST_LCC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_MCST_LCC_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_GCC_VERSION) + #undef JSON_HEDLEY_GCC_VERSION +#endif +#if \ + defined(JSON_HEDLEY_GNUC_VERSION) && \ + !defined(__clang__) && \ + !defined(JSON_HEDLEY_INTEL_VERSION) && \ + !defined(JSON_HEDLEY_PGI_VERSION) && \ + !defined(JSON_HEDLEY_ARM_VERSION) && \ + !defined(JSON_HEDLEY_CRAY_VERSION) && \ + !defined(JSON_HEDLEY_TI_VERSION) && \ + !defined(JSON_HEDLEY_TI_ARMCL_VERSION) && \ + !defined(JSON_HEDLEY_TI_CL430_VERSION) && \ + !defined(JSON_HEDLEY_TI_CL2000_VERSION) && \ + !defined(JSON_HEDLEY_TI_CL6X_VERSION) && \ + !defined(JSON_HEDLEY_TI_CL7X_VERSION) && \ + !defined(JSON_HEDLEY_TI_CLPRU_VERSION) && \ + !defined(__COMPCERT__) && \ + !defined(JSON_HEDLEY_MCST_LCC_VERSION) + #define JSON_HEDLEY_GCC_VERSION JSON_HEDLEY_GNUC_VERSION +#endif + +#if defined(JSON_HEDLEY_GCC_VERSION_CHECK) + #undef JSON_HEDLEY_GCC_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_GCC_VERSION) + #define JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_GCC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_HAS_ATTRIBUTE) + #undef JSON_HEDLEY_HAS_ATTRIBUTE +#endif +#if \ + defined(__has_attribute) && \ + ( \ + (!defined(JSON_HEDLEY_IAR_VERSION) || JSON_HEDLEY_IAR_VERSION_CHECK(8,5,9)) \ + ) +# define JSON_HEDLEY_HAS_ATTRIBUTE(attribute) __has_attribute(attribute) +#else +# define JSON_HEDLEY_HAS_ATTRIBUTE(attribute) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_ATTRIBUTE) + #undef JSON_HEDLEY_GNUC_HAS_ATTRIBUTE +#endif +#if defined(__has_attribute) + #define JSON_HEDLEY_GNUC_HAS_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_HAS_ATTRIBUTE(attribute) +#else + #define JSON_HEDLEY_GNUC_HAS_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_ATTRIBUTE) + #undef JSON_HEDLEY_GCC_HAS_ATTRIBUTE +#endif +#if defined(__has_attribute) + #define JSON_HEDLEY_GCC_HAS_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_HAS_ATTRIBUTE(attribute) +#else + #define JSON_HEDLEY_GCC_HAS_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_CPP_ATTRIBUTE) + #undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE +#endif +#if \ + defined(__has_cpp_attribute) && \ + defined(__cplusplus) && \ + (!defined(JSON_HEDLEY_SUNPRO_VERSION) || JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0)) + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) __has_cpp_attribute(attribute) +#else + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) (0) +#endif + +#if defined(JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS) + #undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS +#endif +#if !defined(__cplusplus) || !defined(__has_cpp_attribute) + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) (0) +#elif \ + !defined(JSON_HEDLEY_PGI_VERSION) && \ + !defined(JSON_HEDLEY_IAR_VERSION) && \ + (!defined(JSON_HEDLEY_SUNPRO_VERSION) || JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0)) && \ + (!defined(JSON_HEDLEY_MSVC_VERSION) || JSON_HEDLEY_MSVC_VERSION_CHECK(19,20,0)) + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) JSON_HEDLEY_HAS_CPP_ATTRIBUTE(ns::attribute) +#else + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE) + #undef JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE +#endif +#if defined(__has_cpp_attribute) && defined(__cplusplus) + #define JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) __has_cpp_attribute(attribute) +#else + #define JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE) + #undef JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE +#endif +#if defined(__has_cpp_attribute) && defined(__cplusplus) + #define JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) __has_cpp_attribute(attribute) +#else + #define JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_BUILTIN) + #undef JSON_HEDLEY_HAS_BUILTIN +#endif +#if defined(__has_builtin) + #define JSON_HEDLEY_HAS_BUILTIN(builtin) __has_builtin(builtin) +#else + #define JSON_HEDLEY_HAS_BUILTIN(builtin) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_BUILTIN) + #undef JSON_HEDLEY_GNUC_HAS_BUILTIN +#endif +#if defined(__has_builtin) + #define JSON_HEDLEY_GNUC_HAS_BUILTIN(builtin,major,minor,patch) __has_builtin(builtin) +#else + #define JSON_HEDLEY_GNUC_HAS_BUILTIN(builtin,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_BUILTIN) + #undef JSON_HEDLEY_GCC_HAS_BUILTIN +#endif +#if defined(__has_builtin) + #define JSON_HEDLEY_GCC_HAS_BUILTIN(builtin,major,minor,patch) __has_builtin(builtin) +#else + #define JSON_HEDLEY_GCC_HAS_BUILTIN(builtin,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_FEATURE) + #undef JSON_HEDLEY_HAS_FEATURE +#endif +#if defined(__has_feature) + #define JSON_HEDLEY_HAS_FEATURE(feature) __has_feature(feature) +#else + #define JSON_HEDLEY_HAS_FEATURE(feature) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_FEATURE) + #undef JSON_HEDLEY_GNUC_HAS_FEATURE +#endif +#if defined(__has_feature) + #define JSON_HEDLEY_GNUC_HAS_FEATURE(feature,major,minor,patch) __has_feature(feature) +#else + #define JSON_HEDLEY_GNUC_HAS_FEATURE(feature,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_FEATURE) + #undef JSON_HEDLEY_GCC_HAS_FEATURE +#endif +#if defined(__has_feature) + #define JSON_HEDLEY_GCC_HAS_FEATURE(feature,major,minor,patch) __has_feature(feature) +#else + #define JSON_HEDLEY_GCC_HAS_FEATURE(feature,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_EXTENSION) + #undef JSON_HEDLEY_HAS_EXTENSION +#endif +#if defined(__has_extension) + #define JSON_HEDLEY_HAS_EXTENSION(extension) __has_extension(extension) +#else + #define JSON_HEDLEY_HAS_EXTENSION(extension) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_EXTENSION) + #undef JSON_HEDLEY_GNUC_HAS_EXTENSION +#endif +#if defined(__has_extension) + #define JSON_HEDLEY_GNUC_HAS_EXTENSION(extension,major,minor,patch) __has_extension(extension) +#else + #define JSON_HEDLEY_GNUC_HAS_EXTENSION(extension,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_EXTENSION) + #undef JSON_HEDLEY_GCC_HAS_EXTENSION +#endif +#if defined(__has_extension) + #define JSON_HEDLEY_GCC_HAS_EXTENSION(extension,major,minor,patch) __has_extension(extension) +#else + #define JSON_HEDLEY_GCC_HAS_EXTENSION(extension,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE) + #undef JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE +#endif +#if defined(__has_declspec_attribute) + #define JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) __has_declspec_attribute(attribute) +#else + #define JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE) + #undef JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE +#endif +#if defined(__has_declspec_attribute) + #define JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) __has_declspec_attribute(attribute) +#else + #define JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE) + #undef JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE +#endif +#if defined(__has_declspec_attribute) + #define JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) __has_declspec_attribute(attribute) +#else + #define JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_WARNING) + #undef JSON_HEDLEY_HAS_WARNING +#endif +#if defined(__has_warning) + #define JSON_HEDLEY_HAS_WARNING(warning) __has_warning(warning) +#else + #define JSON_HEDLEY_HAS_WARNING(warning) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_WARNING) + #undef JSON_HEDLEY_GNUC_HAS_WARNING +#endif +#if defined(__has_warning) + #define JSON_HEDLEY_GNUC_HAS_WARNING(warning,major,minor,patch) __has_warning(warning) +#else + #define JSON_HEDLEY_GNUC_HAS_WARNING(warning,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_WARNING) + #undef JSON_HEDLEY_GCC_HAS_WARNING +#endif +#if defined(__has_warning) + #define JSON_HEDLEY_GCC_HAS_WARNING(warning,major,minor,patch) __has_warning(warning) +#else + #define JSON_HEDLEY_GCC_HAS_WARNING(warning,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if \ + (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) || \ + defined(__clang__) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(18,4,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,7,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(2,0,1) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,0,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_CRAY_VERSION_CHECK(5,0,0) || \ + JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,17) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(8,0,0) || \ + (JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) && defined(__C99_PRAGMA_OPERATOR)) + #define JSON_HEDLEY_PRAGMA(value) _Pragma(#value) +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) + #define JSON_HEDLEY_PRAGMA(value) __pragma(value) +#else + #define JSON_HEDLEY_PRAGMA(value) +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_PUSH) + #undef JSON_HEDLEY_DIAGNOSTIC_PUSH +#endif +#if defined(JSON_HEDLEY_DIAGNOSTIC_POP) + #undef JSON_HEDLEY_DIAGNOSTIC_POP +#endif +#if defined(__clang__) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("clang diagnostic push") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("clang diagnostic pop") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("warning(push)") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("warning(pop)") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("GCC diagnostic push") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("GCC diagnostic pop") +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH __pragma(warning(push)) + #define JSON_HEDLEY_DIAGNOSTIC_POP __pragma(warning(pop)) +#elif JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("push") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("pop") +#elif \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,4,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,1,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("diag_push") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("diag_pop") +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,90,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("warning(push)") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("warning(pop)") +#else + #define JSON_HEDLEY_DIAGNOSTIC_PUSH + #define JSON_HEDLEY_DIAGNOSTIC_POP +#endif + +/* JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_ is for + HEDLEY INTERNAL USE ONLY. API subject to change without notice. */ +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_ +#endif +#if defined(__cplusplus) +# if JSON_HEDLEY_HAS_WARNING("-Wc++98-compat") +# if JSON_HEDLEY_HAS_WARNING("-Wc++17-extensions") +# if JSON_HEDLEY_HAS_WARNING("-Wc++1z-extensions") +# define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(xpr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wc++98-compat\"") \ + _Pragma("clang diagnostic ignored \"-Wc++17-extensions\"") \ + _Pragma("clang diagnostic ignored \"-Wc++1z-extensions\"") \ + xpr \ + JSON_HEDLEY_DIAGNOSTIC_POP +# else +# define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(xpr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wc++98-compat\"") \ + _Pragma("clang diagnostic ignored \"-Wc++17-extensions\"") \ + xpr \ + JSON_HEDLEY_DIAGNOSTIC_POP +# endif +# else +# define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(xpr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wc++98-compat\"") \ + xpr \ + JSON_HEDLEY_DIAGNOSTIC_POP +# endif +# endif +#endif +#if !defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(x) x +#endif + +#if defined(JSON_HEDLEY_CONST_CAST) + #undef JSON_HEDLEY_CONST_CAST +#endif +#if defined(__cplusplus) +# define JSON_HEDLEY_CONST_CAST(T, expr) (const_cast(expr)) +#elif \ + JSON_HEDLEY_HAS_WARNING("-Wcast-qual") || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) +# define JSON_HEDLEY_CONST_CAST(T, expr) (__extension__ ({ \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL \ + ((T) (expr)); \ + JSON_HEDLEY_DIAGNOSTIC_POP \ + })) +#else +# define JSON_HEDLEY_CONST_CAST(T, expr) ((T) (expr)) +#endif + +#if defined(JSON_HEDLEY_REINTERPRET_CAST) + #undef JSON_HEDLEY_REINTERPRET_CAST +#endif +#if defined(__cplusplus) + #define JSON_HEDLEY_REINTERPRET_CAST(T, expr) (reinterpret_cast(expr)) +#else + #define JSON_HEDLEY_REINTERPRET_CAST(T, expr) ((T) (expr)) +#endif + +#if defined(JSON_HEDLEY_STATIC_CAST) + #undef JSON_HEDLEY_STATIC_CAST +#endif +#if defined(__cplusplus) + #define JSON_HEDLEY_STATIC_CAST(T, expr) (static_cast(expr)) +#else + #define JSON_HEDLEY_STATIC_CAST(T, expr) ((T) (expr)) +#endif + +#if defined(JSON_HEDLEY_CPP_CAST) + #undef JSON_HEDLEY_CPP_CAST +#endif +#if defined(__cplusplus) +# if JSON_HEDLEY_HAS_WARNING("-Wold-style-cast") +# define JSON_HEDLEY_CPP_CAST(T, expr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wold-style-cast\"") \ + ((T) (expr)) \ + JSON_HEDLEY_DIAGNOSTIC_POP +# elif JSON_HEDLEY_IAR_VERSION_CHECK(8,3,0) +# define JSON_HEDLEY_CPP_CAST(T, expr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("diag_suppress=Pe137") \ + JSON_HEDLEY_DIAGNOSTIC_POP +# else +# define JSON_HEDLEY_CPP_CAST(T, expr) ((T) (expr)) +# endif +#else +# define JSON_HEDLEY_CPP_CAST(T, expr) (expr) +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wdeprecated-declarations") + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("clang diagnostic ignored \"-Wdeprecated-declarations\"") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("warning(disable:1478 1786)") +#elif JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED __pragma(warning(disable:1478 1786)) +#elif JSON_HEDLEY_PGI_VERSION_CHECK(20,7,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress 1215,1216,1444,1445") +#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress 1215,1444") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED __pragma(warning(disable:4996)) +#elif JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress 1215,1444") +#elif \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress 1291,1718") +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) && !defined(__cplusplus) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("error_messages(off,E_DEPRECATED_ATT,E_DEPRECATED_ATT_MESS)") +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) && defined(__cplusplus) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("error_messages(off,symdeprecated,symdeprecated2)") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress=Pe1444,Pe1215") +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,90,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("warn(disable:2241)") +#else + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas") + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("clang diagnostic ignored \"-Wunknown-pragmas\"") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("warning(disable:161)") +#elif JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS __pragma(warning(disable:161)) +#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 1675") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("GCC diagnostic ignored \"-Wunknown-pragmas\"") +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS __pragma(warning(disable:4068)) +#elif \ + JSON_HEDLEY_TI_VERSION_CHECK(16,9,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,0,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,3,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 163") +#elif JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 163") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress=Pe161") +#elif JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 161") +#else + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wunknown-attributes") + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("clang diagnostic ignored \"-Wunknown-attributes\"") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(17,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("warning(disable:1292)") +#elif JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES __pragma(warning(disable:1292)) +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(19,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES __pragma(warning(disable:5030)) +#elif JSON_HEDLEY_PGI_VERSION_CHECK(20,7,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress 1097,1098") +#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress 1097") +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,14,0) && defined(__cplusplus) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("error_messages(off,attrskipunsup)") +#elif \ + JSON_HEDLEY_TI_VERSION_CHECK(18,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,3,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress 1173") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress=Pe1097") +#elif JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress 1097") +#else + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wcast-qual") + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("clang diagnostic ignored \"-Wcast-qual\"") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("warning(disable:2203 2331)") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("GCC diagnostic ignored \"-Wcast-qual\"") +#else + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNUSED_FUNCTION) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNUSED_FUNCTION +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wunused-function") + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNUSED_FUNCTION _Pragma("clang diagnostic ignored \"-Wunused-function\"") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNUSED_FUNCTION _Pragma("GCC diagnostic ignored \"-Wunused-function\"") +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(1,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNUSED_FUNCTION __pragma(warning(disable:4505)) +#elif JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNUSED_FUNCTION _Pragma("diag_suppress 3142") +#else + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNUSED_FUNCTION +#endif + +#if defined(JSON_HEDLEY_DEPRECATED) + #undef JSON_HEDLEY_DEPRECATED +#endif +#if defined(JSON_HEDLEY_DEPRECATED_FOR) + #undef JSON_HEDLEY_DEPRECATED_FOR +#endif +#if \ + JSON_HEDLEY_MSVC_VERSION_CHECK(14,0,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_DEPRECATED(since) __declspec(deprecated("Since " # since)) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __declspec(deprecated("Since " #since "; use " #replacement)) +#elif \ + (JSON_HEDLEY_HAS_EXTENSION(attribute_deprecated_with_message) && !defined(JSON_HEDLEY_IAR_VERSION)) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,5,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(18,1,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(18,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,3,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,3,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_DEPRECATED(since) __attribute__((__deprecated__("Since " #since))) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __attribute__((__deprecated__("Since " #since "; use " #replacement))) +#elif defined(__cplusplus) && (__cplusplus >= 201402L) + #define JSON_HEDLEY_DEPRECATED(since) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[deprecated("Since " #since)]]) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[deprecated("Since " #since "; use " #replacement)]]) +#elif \ + JSON_HEDLEY_HAS_ATTRIBUTE(deprecated) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) || \ + JSON_HEDLEY_IAR_VERSION_CHECK(8,10,0) + #define JSON_HEDLEY_DEPRECATED(since) __attribute__((__deprecated__)) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __attribute__((__deprecated__)) +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) || \ + JSON_HEDLEY_PELLES_VERSION_CHECK(6,50,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_DEPRECATED(since) __declspec(deprecated) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __declspec(deprecated) +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DEPRECATED(since) _Pragma("deprecated") + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) _Pragma("deprecated") +#else + #define JSON_HEDLEY_DEPRECATED(since) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) +#endif + +#if defined(JSON_HEDLEY_UNAVAILABLE) + #undef JSON_HEDLEY_UNAVAILABLE +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(warning) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_UNAVAILABLE(available_since) __attribute__((__warning__("Not available until " #available_since))) +#else + #define JSON_HEDLEY_UNAVAILABLE(available_since) +#endif + +#if defined(JSON_HEDLEY_WARN_UNUSED_RESULT) + #undef JSON_HEDLEY_WARN_UNUSED_RESULT +#endif +#if defined(JSON_HEDLEY_WARN_UNUSED_RESULT_MSG) + #undef JSON_HEDLEY_WARN_UNUSED_RESULT_MSG +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(warn_unused_result) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0) && defined(__cplusplus)) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_WARN_UNUSED_RESULT __attribute__((__warn_unused_result__)) + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) __attribute__((__warn_unused_result__)) +#elif (JSON_HEDLEY_HAS_CPP_ATTRIBUTE(nodiscard) >= 201907L) + #define JSON_HEDLEY_WARN_UNUSED_RESULT JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]]) + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard(msg)]]) +#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE(nodiscard) + #define JSON_HEDLEY_WARN_UNUSED_RESULT JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]]) + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]]) +#elif defined(_Check_return_) /* SAL */ + #define JSON_HEDLEY_WARN_UNUSED_RESULT _Check_return_ + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) _Check_return_ +#else + #define JSON_HEDLEY_WARN_UNUSED_RESULT + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) +#endif + +#if defined(JSON_HEDLEY_SENTINEL) + #undef JSON_HEDLEY_SENTINEL +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(sentinel) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,4,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_SENTINEL(position) __attribute__((__sentinel__(position))) +#else + #define JSON_HEDLEY_SENTINEL(position) +#endif + +#if defined(JSON_HEDLEY_NO_RETURN) + #undef JSON_HEDLEY_NO_RETURN +#endif +#if JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_NO_RETURN __noreturn +#elif \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_NO_RETURN __attribute__((__noreturn__)) +#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L + #define JSON_HEDLEY_NO_RETURN _Noreturn +#elif defined(__cplusplus) && (__cplusplus >= 201103L) + #define JSON_HEDLEY_NO_RETURN JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[noreturn]]) +#elif \ + JSON_HEDLEY_HAS_ATTRIBUTE(noreturn) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,2,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_IAR_VERSION_CHECK(8,10,0) + #define JSON_HEDLEY_NO_RETURN __attribute__((__noreturn__)) +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) + #define JSON_HEDLEY_NO_RETURN _Pragma("does_not_return") +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_NO_RETURN __declspec(noreturn) +#elif JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,0,0) && defined(__cplusplus) + #define JSON_HEDLEY_NO_RETURN _Pragma("FUNC_NEVER_RETURNS;") +#elif JSON_HEDLEY_COMPCERT_VERSION_CHECK(3,2,0) + #define JSON_HEDLEY_NO_RETURN __attribute((noreturn)) +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(9,0,0) + #define JSON_HEDLEY_NO_RETURN __declspec(noreturn) +#else + #define JSON_HEDLEY_NO_RETURN +#endif + +#if defined(JSON_HEDLEY_NO_ESCAPE) + #undef JSON_HEDLEY_NO_ESCAPE +#endif +#if JSON_HEDLEY_HAS_ATTRIBUTE(noescape) + #define JSON_HEDLEY_NO_ESCAPE __attribute__((__noescape__)) +#else + #define JSON_HEDLEY_NO_ESCAPE +#endif + +#if defined(JSON_HEDLEY_UNREACHABLE) + #undef JSON_HEDLEY_UNREACHABLE +#endif +#if defined(JSON_HEDLEY_UNREACHABLE_RETURN) + #undef JSON_HEDLEY_UNREACHABLE_RETURN +#endif +#if defined(JSON_HEDLEY_ASSUME) + #undef JSON_HEDLEY_ASSUME +#endif +#if \ + JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_ASSUME(expr) __assume(expr) +#elif JSON_HEDLEY_HAS_BUILTIN(__builtin_assume) + #define JSON_HEDLEY_ASSUME(expr) __builtin_assume(expr) +#elif \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(4,0,0) + #if defined(__cplusplus) + #define JSON_HEDLEY_ASSUME(expr) std::_nassert(expr) + #else + #define JSON_HEDLEY_ASSUME(expr) _nassert(expr) + #endif +#endif +#if \ + (JSON_HEDLEY_HAS_BUILTIN(__builtin_unreachable) && (!defined(JSON_HEDLEY_ARM_VERSION))) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,5,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(18,10,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(13,1,5) || \ + JSON_HEDLEY_CRAY_VERSION_CHECK(10,0,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_UNREACHABLE() __builtin_unreachable() +#elif defined(JSON_HEDLEY_ASSUME) + #define JSON_HEDLEY_UNREACHABLE() JSON_HEDLEY_ASSUME(0) +#endif +#if !defined(JSON_HEDLEY_ASSUME) + #if defined(JSON_HEDLEY_UNREACHABLE) + #define JSON_HEDLEY_ASSUME(expr) JSON_HEDLEY_STATIC_CAST(void, ((expr) ? 1 : (JSON_HEDLEY_UNREACHABLE(), 1))) + #else + #define JSON_HEDLEY_ASSUME(expr) JSON_HEDLEY_STATIC_CAST(void, expr) + #endif +#endif +#if defined(JSON_HEDLEY_UNREACHABLE) + #if \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(4,0,0) + #define JSON_HEDLEY_UNREACHABLE_RETURN(value) return (JSON_HEDLEY_STATIC_CAST(void, JSON_HEDLEY_ASSUME(0)), (value)) + #else + #define JSON_HEDLEY_UNREACHABLE_RETURN(value) JSON_HEDLEY_UNREACHABLE() + #endif +#else + #define JSON_HEDLEY_UNREACHABLE_RETURN(value) return (value) +#endif +#if !defined(JSON_HEDLEY_UNREACHABLE) + #define JSON_HEDLEY_UNREACHABLE() JSON_HEDLEY_ASSUME(0) +#endif + +JSON_HEDLEY_DIAGNOSTIC_PUSH +#if JSON_HEDLEY_HAS_WARNING("-Wpedantic") + #pragma clang diagnostic ignored "-Wpedantic" +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wc++98-compat-pedantic") && defined(__cplusplus) + #pragma clang diagnostic ignored "-Wc++98-compat-pedantic" +#endif +#if JSON_HEDLEY_GCC_HAS_WARNING("-Wvariadic-macros",4,0,0) + #if defined(__clang__) + #pragma clang diagnostic ignored "-Wvariadic-macros" + #elif defined(JSON_HEDLEY_GCC_VERSION) + #pragma GCC diagnostic ignored "-Wvariadic-macros" + #endif +#endif +#if defined(JSON_HEDLEY_NON_NULL) + #undef JSON_HEDLEY_NON_NULL +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(nonnull) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) + #define JSON_HEDLEY_NON_NULL(...) __attribute__((__nonnull__(__VA_ARGS__))) +#else + #define JSON_HEDLEY_NON_NULL(...) +#endif +JSON_HEDLEY_DIAGNOSTIC_POP + +#if defined(JSON_HEDLEY_PRINTF_FORMAT) + #undef JSON_HEDLEY_PRINTF_FORMAT +#endif +#if defined(__MINGW32__) && JSON_HEDLEY_GCC_HAS_ATTRIBUTE(format,4,4,0) && !defined(__USE_MINGW_ANSI_STDIO) + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(ms_printf, string_idx, first_to_check))) +#elif defined(__MINGW32__) && JSON_HEDLEY_GCC_HAS_ATTRIBUTE(format,4,4,0) && defined(__USE_MINGW_ANSI_STDIO) + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(gnu_printf, string_idx, first_to_check))) +#elif \ + JSON_HEDLEY_HAS_ATTRIBUTE(format) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(__printf__, string_idx, first_to_check))) +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(6,0,0) + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __declspec(vaformat(printf,string_idx,first_to_check)) +#else + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) +#endif + +#if defined(JSON_HEDLEY_CONSTEXPR) + #undef JSON_HEDLEY_CONSTEXPR +#endif +#if defined(__cplusplus) + #if __cplusplus >= 201103L + #define JSON_HEDLEY_CONSTEXPR JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(constexpr) + #endif +#endif +#if !defined(JSON_HEDLEY_CONSTEXPR) + #define JSON_HEDLEY_CONSTEXPR +#endif + +#if defined(JSON_HEDLEY_PREDICT) + #undef JSON_HEDLEY_PREDICT +#endif +#if defined(JSON_HEDLEY_LIKELY) + #undef JSON_HEDLEY_LIKELY +#endif +#if defined(JSON_HEDLEY_UNLIKELY) + #undef JSON_HEDLEY_UNLIKELY +#endif +#if defined(JSON_HEDLEY_UNPREDICTABLE) + #undef JSON_HEDLEY_UNPREDICTABLE +#endif +#if JSON_HEDLEY_HAS_BUILTIN(__builtin_unpredictable) + #define JSON_HEDLEY_UNPREDICTABLE(expr) __builtin_unpredictable((expr)) +#endif +#if \ + (JSON_HEDLEY_HAS_BUILTIN(__builtin_expect_with_probability) && !defined(JSON_HEDLEY_PGI_VERSION)) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(9,0,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) +# define JSON_HEDLEY_PREDICT(expr, value, probability) __builtin_expect_with_probability( (expr), (value), (probability)) +# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) __builtin_expect_with_probability(!!(expr), 1 , (probability)) +# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) __builtin_expect_with_probability(!!(expr), 0 , (probability)) +# define JSON_HEDLEY_LIKELY(expr) __builtin_expect (!!(expr), 1 ) +# define JSON_HEDLEY_UNLIKELY(expr) __builtin_expect (!!(expr), 0 ) +#elif \ + (JSON_HEDLEY_HAS_BUILTIN(__builtin_expect) && !defined(JSON_HEDLEY_INTEL_CL_VERSION)) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0) && defined(__cplusplus)) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,7,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,1,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,27) || \ + JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) +# define JSON_HEDLEY_PREDICT(expr, expected, probability) \ + (((probability) >= 0.9) ? __builtin_expect((expr), (expected)) : (JSON_HEDLEY_STATIC_CAST(void, expected), (expr))) +# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) \ + (__extension__ ({ \ + double hedley_probability_ = (probability); \ + ((hedley_probability_ >= 0.9) ? __builtin_expect(!!(expr), 1) : ((hedley_probability_ <= 0.1) ? __builtin_expect(!!(expr), 0) : !!(expr))); \ + })) +# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) \ + (__extension__ ({ \ + double hedley_probability_ = (probability); \ + ((hedley_probability_ >= 0.9) ? __builtin_expect(!!(expr), 0) : ((hedley_probability_ <= 0.1) ? __builtin_expect(!!(expr), 1) : !!(expr))); \ + })) +# define JSON_HEDLEY_LIKELY(expr) __builtin_expect(!!(expr), 1) +# define JSON_HEDLEY_UNLIKELY(expr) __builtin_expect(!!(expr), 0) +#else +# define JSON_HEDLEY_PREDICT(expr, expected, probability) (JSON_HEDLEY_STATIC_CAST(void, expected), (expr)) +# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) (!!(expr)) +# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) (!!(expr)) +# define JSON_HEDLEY_LIKELY(expr) (!!(expr)) +# define JSON_HEDLEY_UNLIKELY(expr) (!!(expr)) +#endif +#if !defined(JSON_HEDLEY_UNPREDICTABLE) + #define JSON_HEDLEY_UNPREDICTABLE(expr) JSON_HEDLEY_PREDICT(expr, 1, 0.5) +#endif + +#if defined(JSON_HEDLEY_MALLOC) + #undef JSON_HEDLEY_MALLOC +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(malloc) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(12,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_MALLOC __attribute__((__malloc__)) +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) + #define JSON_HEDLEY_MALLOC _Pragma("returns_new_memory") +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(14,0,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_MALLOC __declspec(restrict) +#else + #define JSON_HEDLEY_MALLOC +#endif + +#if defined(JSON_HEDLEY_PURE) + #undef JSON_HEDLEY_PURE +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(pure) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(2,96,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) +# define JSON_HEDLEY_PURE __attribute__((__pure__)) +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) +# define JSON_HEDLEY_PURE _Pragma("does_not_write_global_data") +#elif defined(__cplusplus) && \ + ( \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(2,0,1) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(4,0,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) \ + ) +# define JSON_HEDLEY_PURE _Pragma("FUNC_IS_PURE;") +#else +# define JSON_HEDLEY_PURE +#endif + +#if defined(JSON_HEDLEY_CONST) + #undef JSON_HEDLEY_CONST +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(const) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(2,5,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_CONST __attribute__((__const__)) +#elif \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) + #define JSON_HEDLEY_CONST _Pragma("no_side_effect") +#else + #define JSON_HEDLEY_CONST JSON_HEDLEY_PURE +#endif + +#if defined(JSON_HEDLEY_RESTRICT) + #undef JSON_HEDLEY_RESTRICT +#endif +#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && !defined(__cplusplus) + #define JSON_HEDLEY_RESTRICT restrict +#elif \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_MSVC_VERSION_CHECK(14,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,4) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,1,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,14,0) && defined(__cplusplus)) || \ + JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) || \ + defined(__clang__) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_RESTRICT __restrict +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,3,0) && !defined(__cplusplus) + #define JSON_HEDLEY_RESTRICT _Restrict +#else + #define JSON_HEDLEY_RESTRICT +#endif + +#if defined(JSON_HEDLEY_INLINE) + #undef JSON_HEDLEY_INLINE +#endif +#if \ + (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) || \ + (defined(__cplusplus) && (__cplusplus >= 199711L)) + #define JSON_HEDLEY_INLINE inline +#elif \ + defined(JSON_HEDLEY_GCC_VERSION) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(6,2,0) + #define JSON_HEDLEY_INLINE __inline__ +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(12,0,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,1,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,0,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_INLINE __inline +#else + #define JSON_HEDLEY_INLINE +#endif + +#if defined(JSON_HEDLEY_ALWAYS_INLINE) + #undef JSON_HEDLEY_ALWAYS_INLINE +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(always_inline) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) || \ + JSON_HEDLEY_IAR_VERSION_CHECK(8,10,0) +# define JSON_HEDLEY_ALWAYS_INLINE __attribute__((__always_inline__)) JSON_HEDLEY_INLINE +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(12,0,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) +# define JSON_HEDLEY_ALWAYS_INLINE __forceinline +#elif defined(__cplusplus) && \ + ( \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,1,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) \ + ) +# define JSON_HEDLEY_ALWAYS_INLINE _Pragma("FUNC_ALWAYS_INLINE;") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) +# define JSON_HEDLEY_ALWAYS_INLINE _Pragma("inline=forced") +#else +# define JSON_HEDLEY_ALWAYS_INLINE JSON_HEDLEY_INLINE +#endif + +#if defined(JSON_HEDLEY_NEVER_INLINE) + #undef JSON_HEDLEY_NEVER_INLINE +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(noinline) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) || \ + JSON_HEDLEY_IAR_VERSION_CHECK(8,10,0) + #define JSON_HEDLEY_NEVER_INLINE __attribute__((__noinline__)) +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_NEVER_INLINE __declspec(noinline) +#elif JSON_HEDLEY_PGI_VERSION_CHECK(10,2,0) + #define JSON_HEDLEY_NEVER_INLINE _Pragma("noinline") +#elif JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,0,0) && defined(__cplusplus) + #define JSON_HEDLEY_NEVER_INLINE _Pragma("FUNC_CANNOT_INLINE;") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_NEVER_INLINE _Pragma("inline=never") +#elif JSON_HEDLEY_COMPCERT_VERSION_CHECK(3,2,0) + #define JSON_HEDLEY_NEVER_INLINE __attribute((noinline)) +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(9,0,0) + #define JSON_HEDLEY_NEVER_INLINE __declspec(noinline) +#else + #define JSON_HEDLEY_NEVER_INLINE +#endif + +#if defined(JSON_HEDLEY_PRIVATE) + #undef JSON_HEDLEY_PRIVATE +#endif +#if defined(JSON_HEDLEY_PUBLIC) + #undef JSON_HEDLEY_PUBLIC +#endif +#if defined(JSON_HEDLEY_IMPORT) + #undef JSON_HEDLEY_IMPORT +#endif +#if defined(_WIN32) || defined(__CYGWIN__) +# define JSON_HEDLEY_PRIVATE +# define JSON_HEDLEY_PUBLIC __declspec(dllexport) +# define JSON_HEDLEY_IMPORT __declspec(dllimport) +#else +# if \ + JSON_HEDLEY_HAS_ATTRIBUTE(visibility) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \ + ( \ + defined(__TI_EABI__) && \ + ( \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) \ + ) \ + ) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) +# define JSON_HEDLEY_PRIVATE __attribute__((__visibility__("hidden"))) +# define JSON_HEDLEY_PUBLIC __attribute__((__visibility__("default"))) +# else +# define JSON_HEDLEY_PRIVATE +# define JSON_HEDLEY_PUBLIC +# endif +# define JSON_HEDLEY_IMPORT extern +#endif + +#if defined(JSON_HEDLEY_NO_THROW) + #undef JSON_HEDLEY_NO_THROW +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(nothrow) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_NO_THROW __attribute__((__nothrow__)) +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(13,1,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) + #define JSON_HEDLEY_NO_THROW __declspec(nothrow) +#else + #define JSON_HEDLEY_NO_THROW +#endif + +#if defined(JSON_HEDLEY_FALL_THROUGH) + #undef JSON_HEDLEY_FALL_THROUGH +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(fallthrough) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(7,0,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_FALL_THROUGH __attribute__((__fallthrough__)) +#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(clang,fallthrough) + #define JSON_HEDLEY_FALL_THROUGH JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[clang::fallthrough]]) +#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE(fallthrough) + #define JSON_HEDLEY_FALL_THROUGH JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[fallthrough]]) +#elif defined(__fallthrough) /* SAL */ + #define JSON_HEDLEY_FALL_THROUGH __fallthrough +#else + #define JSON_HEDLEY_FALL_THROUGH +#endif + +#if defined(JSON_HEDLEY_RETURNS_NON_NULL) + #undef JSON_HEDLEY_RETURNS_NON_NULL +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(returns_nonnull) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,9,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_RETURNS_NON_NULL __attribute__((__returns_nonnull__)) +#elif defined(_Ret_notnull_) /* SAL */ + #define JSON_HEDLEY_RETURNS_NON_NULL _Ret_notnull_ +#else + #define JSON_HEDLEY_RETURNS_NON_NULL +#endif + +#if defined(JSON_HEDLEY_ARRAY_PARAM) + #undef JSON_HEDLEY_ARRAY_PARAM +#endif +#if \ + defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && \ + !defined(__STDC_NO_VLA__) && \ + !defined(__cplusplus) && \ + !defined(JSON_HEDLEY_PGI_VERSION) && \ + !defined(JSON_HEDLEY_TINYC_VERSION) + #define JSON_HEDLEY_ARRAY_PARAM(name) (name) +#else + #define JSON_HEDLEY_ARRAY_PARAM(name) +#endif + +#if defined(JSON_HEDLEY_IS_CONSTANT) + #undef JSON_HEDLEY_IS_CONSTANT +#endif +#if defined(JSON_HEDLEY_REQUIRE_CONSTEXPR) + #undef JSON_HEDLEY_REQUIRE_CONSTEXPR +#endif +/* JSON_HEDLEY_IS_CONSTEXPR_ is for + HEDLEY INTERNAL USE ONLY. API subject to change without notice. */ +#if defined(JSON_HEDLEY_IS_CONSTEXPR_) + #undef JSON_HEDLEY_IS_CONSTEXPR_ +#endif +#if \ + JSON_HEDLEY_HAS_BUILTIN(__builtin_constant_p) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,19) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,1,0) || \ + (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) && !defined(__cplusplus)) || \ + JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_IS_CONSTANT(expr) __builtin_constant_p(expr) +#endif +#if !defined(__cplusplus) +# if \ + JSON_HEDLEY_HAS_BUILTIN(__builtin_types_compatible_p) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \ + JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,4,0) || \ + JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,24) +#if defined(__INTPTR_TYPE__) + #define JSON_HEDLEY_IS_CONSTEXPR_(expr) __builtin_types_compatible_p(__typeof__((1 ? (void*) ((__INTPTR_TYPE__) ((expr) * 0)) : (int*) 0)), int*) +#else + #include + #define JSON_HEDLEY_IS_CONSTEXPR_(expr) __builtin_types_compatible_p(__typeof__((1 ? (void*) ((intptr_t) ((expr) * 0)) : (int*) 0)), int*) +#endif +# elif \ + ( \ + defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) && \ + !defined(JSON_HEDLEY_SUNPRO_VERSION) && \ + !defined(JSON_HEDLEY_PGI_VERSION) && \ + !defined(JSON_HEDLEY_IAR_VERSION)) || \ + (JSON_HEDLEY_HAS_EXTENSION(c_generic_selections) && !defined(JSON_HEDLEY_IAR_VERSION)) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,9,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(17,0,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(12,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,3,0) +#if defined(__INTPTR_TYPE__) + #define JSON_HEDLEY_IS_CONSTEXPR_(expr) _Generic((1 ? (void*) ((__INTPTR_TYPE__) ((expr) * 0)) : (int*) 0), int*: 1, void*: 0) +#else + #include + #define JSON_HEDLEY_IS_CONSTEXPR_(expr) _Generic((1 ? (void*) ((intptr_t) * 0) : (int*) 0), int*: 1, void*: 0) +#endif +# elif \ + defined(JSON_HEDLEY_GCC_VERSION) || \ + defined(JSON_HEDLEY_INTEL_VERSION) || \ + defined(JSON_HEDLEY_TINYC_VERSION) || \ + defined(JSON_HEDLEY_TI_ARMCL_VERSION) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(18,12,0) || \ + defined(JSON_HEDLEY_TI_CL2000_VERSION) || \ + defined(JSON_HEDLEY_TI_CL6X_VERSION) || \ + defined(JSON_HEDLEY_TI_CL7X_VERSION) || \ + defined(JSON_HEDLEY_TI_CLPRU_VERSION) || \ + defined(__clang__) +# define JSON_HEDLEY_IS_CONSTEXPR_(expr) ( \ + sizeof(void) != \ + sizeof(*( \ + 1 ? \ + ((void*) ((expr) * 0L) ) : \ +((struct { char v[sizeof(void) * 2]; } *) 1) \ + ) \ + ) \ + ) +# endif +#endif +#if defined(JSON_HEDLEY_IS_CONSTEXPR_) + #if !defined(JSON_HEDLEY_IS_CONSTANT) + #define JSON_HEDLEY_IS_CONSTANT(expr) JSON_HEDLEY_IS_CONSTEXPR_(expr) + #endif + #define JSON_HEDLEY_REQUIRE_CONSTEXPR(expr) (JSON_HEDLEY_IS_CONSTEXPR_(expr) ? (expr) : (-1)) +#else + #if !defined(JSON_HEDLEY_IS_CONSTANT) + #define JSON_HEDLEY_IS_CONSTANT(expr) (0) + #endif + #define JSON_HEDLEY_REQUIRE_CONSTEXPR(expr) (expr) +#endif + +#if defined(JSON_HEDLEY_BEGIN_C_DECLS) + #undef JSON_HEDLEY_BEGIN_C_DECLS +#endif +#if defined(JSON_HEDLEY_END_C_DECLS) + #undef JSON_HEDLEY_END_C_DECLS +#endif +#if defined(JSON_HEDLEY_C_DECL) + #undef JSON_HEDLEY_C_DECL +#endif +#if defined(__cplusplus) + #define JSON_HEDLEY_BEGIN_C_DECLS extern "C" { + #define JSON_HEDLEY_END_C_DECLS } + #define JSON_HEDLEY_C_DECL extern "C" +#else + #define JSON_HEDLEY_BEGIN_C_DECLS + #define JSON_HEDLEY_END_C_DECLS + #define JSON_HEDLEY_C_DECL +#endif + +#if defined(JSON_HEDLEY_STATIC_ASSERT) + #undef JSON_HEDLEY_STATIC_ASSERT +#endif +#if \ + !defined(__cplusplus) && ( \ + (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L)) || \ + (JSON_HEDLEY_HAS_FEATURE(c_static_assert) && !defined(JSON_HEDLEY_INTEL_CL_VERSION)) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(6,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + defined(_Static_assert) \ + ) +# define JSON_HEDLEY_STATIC_ASSERT(expr, message) _Static_assert(expr, message) +#elif \ + (defined(__cplusplus) && (__cplusplus >= 201103L)) || \ + JSON_HEDLEY_MSVC_VERSION_CHECK(16,0,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) +# define JSON_HEDLEY_STATIC_ASSERT(expr, message) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(static_assert(expr, message)) +#else +# define JSON_HEDLEY_STATIC_ASSERT(expr, message) +#endif + +#if defined(JSON_HEDLEY_NULL) + #undef JSON_HEDLEY_NULL +#endif +#if defined(__cplusplus) + #if __cplusplus >= 201103L + #define JSON_HEDLEY_NULL JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(nullptr) + #elif defined(NULL) + #define JSON_HEDLEY_NULL NULL + #else + #define JSON_HEDLEY_NULL JSON_HEDLEY_STATIC_CAST(void*, 0) + #endif +#elif defined(NULL) + #define JSON_HEDLEY_NULL NULL +#else + #define JSON_HEDLEY_NULL ((void*) 0) +#endif + +#if defined(JSON_HEDLEY_MESSAGE) + #undef JSON_HEDLEY_MESSAGE +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas") +# define JSON_HEDLEY_MESSAGE(msg) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS \ + JSON_HEDLEY_PRAGMA(message msg) \ + JSON_HEDLEY_DIAGNOSTIC_POP +#elif \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) +# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message msg) +#elif JSON_HEDLEY_CRAY_VERSION_CHECK(5,0,0) +# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(_CRI message msg) +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) +# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message(msg)) +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,0,0) +# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message(msg)) +#else +# define JSON_HEDLEY_MESSAGE(msg) +#endif + +#if defined(JSON_HEDLEY_WARNING) + #undef JSON_HEDLEY_WARNING +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas") +# define JSON_HEDLEY_WARNING(msg) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS \ + JSON_HEDLEY_PRAGMA(clang warning msg) \ + JSON_HEDLEY_DIAGNOSTIC_POP +#elif \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,8,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(18,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) +# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_PRAGMA(GCC warning msg) +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) +# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_PRAGMA(message(msg)) +#else +# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_MESSAGE(msg) +#endif + +#if defined(JSON_HEDLEY_REQUIRE) + #undef JSON_HEDLEY_REQUIRE +#endif +#if defined(JSON_HEDLEY_REQUIRE_MSG) + #undef JSON_HEDLEY_REQUIRE_MSG +#endif +#if JSON_HEDLEY_HAS_ATTRIBUTE(diagnose_if) +# if JSON_HEDLEY_HAS_WARNING("-Wgcc-compat") +# define JSON_HEDLEY_REQUIRE(expr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wgcc-compat\"") \ + __attribute__((diagnose_if(!(expr), #expr, "error"))) \ + JSON_HEDLEY_DIAGNOSTIC_POP +# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wgcc-compat\"") \ + __attribute__((diagnose_if(!(expr), msg, "error"))) \ + JSON_HEDLEY_DIAGNOSTIC_POP +# else +# define JSON_HEDLEY_REQUIRE(expr) __attribute__((diagnose_if(!(expr), #expr, "error"))) +# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) __attribute__((diagnose_if(!(expr), msg, "error"))) +# endif +#else +# define JSON_HEDLEY_REQUIRE(expr) +# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) +#endif + +#if defined(JSON_HEDLEY_FLAGS) + #undef JSON_HEDLEY_FLAGS +#endif +#if JSON_HEDLEY_HAS_ATTRIBUTE(flag_enum) && (!defined(__cplusplus) || JSON_HEDLEY_HAS_WARNING("-Wbitfield-enum-conversion")) + #define JSON_HEDLEY_FLAGS __attribute__((__flag_enum__)) +#else + #define JSON_HEDLEY_FLAGS +#endif + +#if defined(JSON_HEDLEY_FLAGS_CAST) + #undef JSON_HEDLEY_FLAGS_CAST +#endif +#if JSON_HEDLEY_INTEL_VERSION_CHECK(19,0,0) +# define JSON_HEDLEY_FLAGS_CAST(T, expr) (__extension__ ({ \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("warning(disable:188)") \ + ((T) (expr)); \ + JSON_HEDLEY_DIAGNOSTIC_POP \ + })) +#else +# define JSON_HEDLEY_FLAGS_CAST(T, expr) JSON_HEDLEY_STATIC_CAST(T, expr) +#endif + +#if defined(JSON_HEDLEY_EMPTY_BASES) + #undef JSON_HEDLEY_EMPTY_BASES +#endif +#if \ + (JSON_HEDLEY_MSVC_VERSION_CHECK(19,0,23918) && !JSON_HEDLEY_MSVC_VERSION_CHECK(20,0,0)) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_EMPTY_BASES __declspec(empty_bases) +#else + #define JSON_HEDLEY_EMPTY_BASES +#endif + +/* Remaining macros are deprecated. */ + +#if defined(JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK) + #undef JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK +#endif +#if defined(__clang__) + #define JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK(major,minor,patch) (0) +#else + #define JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK(major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_CLANG_HAS_ATTRIBUTE) + #undef JSON_HEDLEY_CLANG_HAS_ATTRIBUTE +#endif +#define JSON_HEDLEY_CLANG_HAS_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_ATTRIBUTE(attribute) + +#if defined(JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE) + #undef JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE +#endif +#define JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) + +#if defined(JSON_HEDLEY_CLANG_HAS_BUILTIN) + #undef JSON_HEDLEY_CLANG_HAS_BUILTIN +#endif +#define JSON_HEDLEY_CLANG_HAS_BUILTIN(builtin) JSON_HEDLEY_HAS_BUILTIN(builtin) + +#if defined(JSON_HEDLEY_CLANG_HAS_FEATURE) + #undef JSON_HEDLEY_CLANG_HAS_FEATURE +#endif +#define JSON_HEDLEY_CLANG_HAS_FEATURE(feature) JSON_HEDLEY_HAS_FEATURE(feature) + +#if defined(JSON_HEDLEY_CLANG_HAS_EXTENSION) + #undef JSON_HEDLEY_CLANG_HAS_EXTENSION +#endif +#define JSON_HEDLEY_CLANG_HAS_EXTENSION(extension) JSON_HEDLEY_HAS_EXTENSION(extension) + +#if defined(JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE) + #undef JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE +#endif +#define JSON_HEDLEY_CLANG_HAS_DECLSPEC_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) + +#if defined(JSON_HEDLEY_CLANG_HAS_WARNING) + #undef JSON_HEDLEY_CLANG_HAS_WARNING +#endif +#define JSON_HEDLEY_CLANG_HAS_WARNING(warning) JSON_HEDLEY_HAS_WARNING(warning) + +#endif /* !defined(JSON_HEDLEY_VERSION) || (JSON_HEDLEY_VERSION < X) */ + + +// This file contains all internal macro definitions (except those affecting ABI) +// You MUST include macro_unscope.hpp at the end of json.hpp to undef all of them + +// #include + + +// exclude unsupported compilers +#if !defined(JSON_SKIP_UNSUPPORTED_COMPILER_CHECK) + #if defined(__clang__) + #if (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__) < 30400 + #error "unsupported Clang version - see https://github.com/nlohmann/json#supported-compilers" + #endif + #elif defined(__GNUC__) && !(defined(__ICC) || defined(__INTEL_COMPILER)) + #if (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) < 40800 + #error "unsupported GCC version - see https://github.com/nlohmann/json#supported-compilers" + #endif + #endif +#endif + +// C++ language standard detection +// if the user manually specified the used c++ version this is skipped +#if !defined(JSON_HAS_CPP_20) && !defined(JSON_HAS_CPP_17) && !defined(JSON_HAS_CPP_14) && !defined(JSON_HAS_CPP_11) + #if (defined(__cplusplus) && __cplusplus >= 202002L) || (defined(_MSVC_LANG) && _MSVC_LANG >= 202002L) + #define JSON_HAS_CPP_20 + #define JSON_HAS_CPP_17 + #define JSON_HAS_CPP_14 + #elif (defined(__cplusplus) && __cplusplus >= 201703L) || (defined(_HAS_CXX17) && _HAS_CXX17 == 1) // fix for issue #464 + #define JSON_HAS_CPP_17 + #define JSON_HAS_CPP_14 + #elif (defined(__cplusplus) && __cplusplus >= 201402L) || (defined(_HAS_CXX14) && _HAS_CXX14 == 1) + #define JSON_HAS_CPP_14 + #endif + // the cpp 11 flag is always specified because it is the minimal required version + #define JSON_HAS_CPP_11 +#endif + +#ifdef __has_include + #if __has_include() + #include + #endif +#endif + +#if !defined(JSON_HAS_FILESYSTEM) && !defined(JSON_HAS_EXPERIMENTAL_FILESYSTEM) + #ifdef JSON_HAS_CPP_17 + #if defined(__cpp_lib_filesystem) + #define JSON_HAS_FILESYSTEM 1 + #elif defined(__cpp_lib_experimental_filesystem) + #define JSON_HAS_EXPERIMENTAL_FILESYSTEM 1 + #elif !defined(__has_include) + #define JSON_HAS_EXPERIMENTAL_FILESYSTEM 1 + #elif __has_include() + #define JSON_HAS_FILESYSTEM 1 + #elif __has_include() + #define JSON_HAS_EXPERIMENTAL_FILESYSTEM 1 + #endif + + // std::filesystem does not work on MinGW GCC 8: https://sourceforge.net/p/mingw-w64/bugs/737/ + #if defined(__MINGW32__) && defined(__GNUC__) && __GNUC__ == 8 + #undef JSON_HAS_FILESYSTEM + #undef JSON_HAS_EXPERIMENTAL_FILESYSTEM + #endif + + // no filesystem support before GCC 8: https://en.cppreference.com/w/cpp/compiler_support + #if defined(__GNUC__) && !defined(__clang__) && __GNUC__ < 8 + #undef JSON_HAS_FILESYSTEM + #undef JSON_HAS_EXPERIMENTAL_FILESYSTEM + #endif + + // no filesystem support before Clang 7: https://en.cppreference.com/w/cpp/compiler_support + #if defined(__clang_major__) && __clang_major__ < 7 + #undef JSON_HAS_FILESYSTEM + #undef JSON_HAS_EXPERIMENTAL_FILESYSTEM + #endif + + // no filesystem support before MSVC 19.14: https://en.cppreference.com/w/cpp/compiler_support + #if defined(_MSC_VER) && _MSC_VER < 1914 + #undef JSON_HAS_FILESYSTEM + #undef JSON_HAS_EXPERIMENTAL_FILESYSTEM + #endif + + // no filesystem support before iOS 13 + #if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && __IPHONE_OS_VERSION_MIN_REQUIRED < 130000 + #undef JSON_HAS_FILESYSTEM + #undef JSON_HAS_EXPERIMENTAL_FILESYSTEM + #endif + + // no filesystem support before macOS Catalina + #if defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED < 101500 + #undef JSON_HAS_FILESYSTEM + #undef JSON_HAS_EXPERIMENTAL_FILESYSTEM + #endif + #endif +#endif + +#ifndef JSON_HAS_EXPERIMENTAL_FILESYSTEM + #define JSON_HAS_EXPERIMENTAL_FILESYSTEM 0 +#endif + +#ifndef JSON_HAS_FILESYSTEM + #define JSON_HAS_FILESYSTEM 0 +#endif + +#ifndef JSON_HAS_THREE_WAY_COMPARISON + #if defined(__cpp_impl_three_way_comparison) && __cpp_impl_three_way_comparison >= 201907L \ + && defined(__cpp_lib_three_way_comparison) && __cpp_lib_three_way_comparison >= 201907L + #define JSON_HAS_THREE_WAY_COMPARISON 1 + #else + #define JSON_HAS_THREE_WAY_COMPARISON 0 + #endif +#endif + +#ifndef JSON_HAS_RANGES + // ranges header shipping in GCC 11.1.0 (released 2021-04-27) has syntax error + #if defined(__GLIBCXX__) && __GLIBCXX__ == 20210427 + #define JSON_HAS_RANGES 0 + #elif defined(__cpp_lib_ranges) + #define JSON_HAS_RANGES 1 + #else + #define JSON_HAS_RANGES 0 + #endif +#endif + +#ifndef JSON_HAS_STATIC_RTTI + #if !defined(_HAS_STATIC_RTTI) || _HAS_STATIC_RTTI != 0 + #define JSON_HAS_STATIC_RTTI 1 + #else + #define JSON_HAS_STATIC_RTTI 0 + #endif +#endif + +#ifdef JSON_HAS_CPP_17 + #define JSON_INLINE_VARIABLE inline +#else + #define JSON_INLINE_VARIABLE +#endif + +#if JSON_HEDLEY_HAS_ATTRIBUTE(no_unique_address) + #define JSON_NO_UNIQUE_ADDRESS [[no_unique_address]] +#else + #define JSON_NO_UNIQUE_ADDRESS +#endif + +// disable documentation warnings on clang +#if defined(__clang__) + #pragma clang diagnostic push + #pragma clang diagnostic ignored "-Wdocumentation" + #pragma clang diagnostic ignored "-Wdocumentation-unknown-command" +#endif + +// allow disabling exceptions +#if (defined(__cpp_exceptions) || defined(__EXCEPTIONS) || defined(_CPPUNWIND)) && !defined(JSON_NOEXCEPTION) + #define JSON_THROW(exception) throw exception + #define JSON_TRY try + #define JSON_CATCH(exception) catch(exception) + #define JSON_INTERNAL_CATCH(exception) catch(exception) +#else + #include + #define JSON_THROW(exception) std::abort() + #define JSON_TRY if(true) + #define JSON_CATCH(exception) if(false) + #define JSON_INTERNAL_CATCH(exception) if(false) +#endif + +// override exception macros +#if defined(JSON_THROW_USER) + #undef JSON_THROW + #define JSON_THROW JSON_THROW_USER +#endif +#if defined(JSON_TRY_USER) + #undef JSON_TRY + #define JSON_TRY JSON_TRY_USER +#endif +#if defined(JSON_CATCH_USER) + #undef JSON_CATCH + #define JSON_CATCH JSON_CATCH_USER + #undef JSON_INTERNAL_CATCH + #define JSON_INTERNAL_CATCH JSON_CATCH_USER +#endif +#if defined(JSON_INTERNAL_CATCH_USER) + #undef JSON_INTERNAL_CATCH + #define JSON_INTERNAL_CATCH JSON_INTERNAL_CATCH_USER +#endif + +// allow overriding assert +#if !defined(JSON_ASSERT) + #include // assert + #define JSON_ASSERT(x) assert(x) +#endif + +// allow to access some private functions (needed by the test suite) +#if defined(JSON_TESTS_PRIVATE) + #define JSON_PRIVATE_UNLESS_TESTED public +#else + #define JSON_PRIVATE_UNLESS_TESTED private +#endif + +/*! +@brief macro to briefly define a mapping between an enum and JSON +@def NLOHMANN_JSON_SERIALIZE_ENUM +@since version 3.4.0 +*/ +#define NLOHMANN_JSON_SERIALIZE_ENUM(ENUM_TYPE, ...) \ + template \ + inline void to_json(BasicJsonType& j, const ENUM_TYPE& e) \ + { \ + static_assert(std::is_enum::value, #ENUM_TYPE " must be an enum!"); \ + static const std::pair m[] = __VA_ARGS__; \ + auto it = std::find_if(std::begin(m), std::end(m), \ + [e](const std::pair& ej_pair) -> bool \ + { \ + return ej_pair.first == e; \ + }); \ + j = ((it != std::end(m)) ? it : std::begin(m))->second; \ + } \ + template \ + inline void from_json(const BasicJsonType& j, ENUM_TYPE& e) \ + { \ + static_assert(std::is_enum::value, #ENUM_TYPE " must be an enum!"); \ + static const std::pair m[] = __VA_ARGS__; \ + auto it = std::find_if(std::begin(m), std::end(m), \ + [&j](const std::pair& ej_pair) -> bool \ + { \ + return ej_pair.second == j; \ + }); \ + e = ((it != std::end(m)) ? it : std::begin(m))->first; \ + } + +// Ugly macros to avoid uglier copy-paste when specializing basic_json. They +// may be removed in the future once the class is split. + +#define NLOHMANN_BASIC_JSON_TPL_DECLARATION \ + template class ObjectType, \ + template class ArrayType, \ + class StringType, class BooleanType, class NumberIntegerType, \ + class NumberUnsignedType, class NumberFloatType, \ + template class AllocatorType, \ + template class JSONSerializer, \ + class BinaryType, \ + class CustomBaseClass> + +#define NLOHMANN_BASIC_JSON_TPL \ + basic_json + +// Macros to simplify conversion from/to types + +#define NLOHMANN_JSON_EXPAND( x ) x +#define NLOHMANN_JSON_GET_MACRO(_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, NAME,...) NAME +#define NLOHMANN_JSON_PASTE(...) NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_GET_MACRO(__VA_ARGS__, \ + NLOHMANN_JSON_PASTE64, \ + NLOHMANN_JSON_PASTE63, \ + NLOHMANN_JSON_PASTE62, \ + NLOHMANN_JSON_PASTE61, \ + NLOHMANN_JSON_PASTE60, \ + NLOHMANN_JSON_PASTE59, \ + NLOHMANN_JSON_PASTE58, \ + NLOHMANN_JSON_PASTE57, \ + NLOHMANN_JSON_PASTE56, \ + NLOHMANN_JSON_PASTE55, \ + NLOHMANN_JSON_PASTE54, \ + NLOHMANN_JSON_PASTE53, \ + NLOHMANN_JSON_PASTE52, \ + NLOHMANN_JSON_PASTE51, \ + NLOHMANN_JSON_PASTE50, \ + NLOHMANN_JSON_PASTE49, \ + NLOHMANN_JSON_PASTE48, \ + NLOHMANN_JSON_PASTE47, \ + NLOHMANN_JSON_PASTE46, \ + NLOHMANN_JSON_PASTE45, \ + NLOHMANN_JSON_PASTE44, \ + NLOHMANN_JSON_PASTE43, \ + NLOHMANN_JSON_PASTE42, \ + NLOHMANN_JSON_PASTE41, \ + NLOHMANN_JSON_PASTE40, \ + NLOHMANN_JSON_PASTE39, \ + NLOHMANN_JSON_PASTE38, \ + NLOHMANN_JSON_PASTE37, \ + NLOHMANN_JSON_PASTE36, \ + NLOHMANN_JSON_PASTE35, \ + NLOHMANN_JSON_PASTE34, \ + NLOHMANN_JSON_PASTE33, \ + NLOHMANN_JSON_PASTE32, \ + NLOHMANN_JSON_PASTE31, \ + NLOHMANN_JSON_PASTE30, \ + NLOHMANN_JSON_PASTE29, \ + NLOHMANN_JSON_PASTE28, \ + NLOHMANN_JSON_PASTE27, \ + NLOHMANN_JSON_PASTE26, \ + NLOHMANN_JSON_PASTE25, \ + NLOHMANN_JSON_PASTE24, \ + NLOHMANN_JSON_PASTE23, \ + NLOHMANN_JSON_PASTE22, \ + NLOHMANN_JSON_PASTE21, \ + NLOHMANN_JSON_PASTE20, \ + NLOHMANN_JSON_PASTE19, \ + NLOHMANN_JSON_PASTE18, \ + NLOHMANN_JSON_PASTE17, \ + NLOHMANN_JSON_PASTE16, \ + NLOHMANN_JSON_PASTE15, \ + NLOHMANN_JSON_PASTE14, \ + NLOHMANN_JSON_PASTE13, \ + NLOHMANN_JSON_PASTE12, \ + NLOHMANN_JSON_PASTE11, \ + NLOHMANN_JSON_PASTE10, \ + NLOHMANN_JSON_PASTE9, \ + NLOHMANN_JSON_PASTE8, \ + NLOHMANN_JSON_PASTE7, \ + NLOHMANN_JSON_PASTE6, \ + NLOHMANN_JSON_PASTE5, \ + NLOHMANN_JSON_PASTE4, \ + NLOHMANN_JSON_PASTE3, \ + NLOHMANN_JSON_PASTE2, \ + NLOHMANN_JSON_PASTE1)(__VA_ARGS__)) +#define NLOHMANN_JSON_PASTE2(func, v1) func(v1) +#define NLOHMANN_JSON_PASTE3(func, v1, v2) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE2(func, v2) +#define NLOHMANN_JSON_PASTE4(func, v1, v2, v3) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE3(func, v2, v3) +#define NLOHMANN_JSON_PASTE5(func, v1, v2, v3, v4) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE4(func, v2, v3, v4) +#define NLOHMANN_JSON_PASTE6(func, v1, v2, v3, v4, v5) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE5(func, v2, v3, v4, v5) +#define NLOHMANN_JSON_PASTE7(func, v1, v2, v3, v4, v5, v6) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE6(func, v2, v3, v4, v5, v6) +#define NLOHMANN_JSON_PASTE8(func, v1, v2, v3, v4, v5, v6, v7) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE7(func, v2, v3, v4, v5, v6, v7) +#define NLOHMANN_JSON_PASTE9(func, v1, v2, v3, v4, v5, v6, v7, v8) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE8(func, v2, v3, v4, v5, v6, v7, v8) +#define NLOHMANN_JSON_PASTE10(func, v1, v2, v3, v4, v5, v6, v7, v8, v9) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE9(func, v2, v3, v4, v5, v6, v7, v8, v9) +#define NLOHMANN_JSON_PASTE11(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE10(func, v2, v3, v4, v5, v6, v7, v8, v9, v10) +#define NLOHMANN_JSON_PASTE12(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE11(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) +#define NLOHMANN_JSON_PASTE13(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE12(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) +#define NLOHMANN_JSON_PASTE14(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE13(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) +#define NLOHMANN_JSON_PASTE15(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE14(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) +#define NLOHMANN_JSON_PASTE16(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE15(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15) +#define NLOHMANN_JSON_PASTE17(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE16(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16) +#define NLOHMANN_JSON_PASTE18(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE17(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17) +#define NLOHMANN_JSON_PASTE19(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE18(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18) +#define NLOHMANN_JSON_PASTE20(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE19(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19) +#define NLOHMANN_JSON_PASTE21(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE20(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20) +#define NLOHMANN_JSON_PASTE22(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE21(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21) +#define NLOHMANN_JSON_PASTE23(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE22(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) +#define NLOHMANN_JSON_PASTE24(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE23(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) +#define NLOHMANN_JSON_PASTE25(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE24(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24) +#define NLOHMANN_JSON_PASTE26(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE25(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25) +#define NLOHMANN_JSON_PASTE27(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE26(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26) +#define NLOHMANN_JSON_PASTE28(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE27(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27) +#define NLOHMANN_JSON_PASTE29(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE28(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28) +#define NLOHMANN_JSON_PASTE30(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE29(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29) +#define NLOHMANN_JSON_PASTE31(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE30(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30) +#define NLOHMANN_JSON_PASTE32(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE31(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31) +#define NLOHMANN_JSON_PASTE33(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE32(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32) +#define NLOHMANN_JSON_PASTE34(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE33(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33) +#define NLOHMANN_JSON_PASTE35(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE34(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34) +#define NLOHMANN_JSON_PASTE36(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE35(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35) +#define NLOHMANN_JSON_PASTE37(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE36(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36) +#define NLOHMANN_JSON_PASTE38(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE37(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37) +#define NLOHMANN_JSON_PASTE39(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE38(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38) +#define NLOHMANN_JSON_PASTE40(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE39(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39) +#define NLOHMANN_JSON_PASTE41(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE40(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40) +#define NLOHMANN_JSON_PASTE42(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE41(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41) +#define NLOHMANN_JSON_PASTE43(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE42(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42) +#define NLOHMANN_JSON_PASTE44(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE43(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43) +#define NLOHMANN_JSON_PASTE45(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE44(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44) +#define NLOHMANN_JSON_PASTE46(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE45(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45) +#define NLOHMANN_JSON_PASTE47(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE46(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46) +#define NLOHMANN_JSON_PASTE48(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE47(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47) +#define NLOHMANN_JSON_PASTE49(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE48(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48) +#define NLOHMANN_JSON_PASTE50(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE49(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49) +#define NLOHMANN_JSON_PASTE51(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE50(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50) +#define NLOHMANN_JSON_PASTE52(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE51(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51) +#define NLOHMANN_JSON_PASTE53(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE52(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52) +#define NLOHMANN_JSON_PASTE54(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE53(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53) +#define NLOHMANN_JSON_PASTE55(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE54(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54) +#define NLOHMANN_JSON_PASTE56(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE55(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55) +#define NLOHMANN_JSON_PASTE57(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE56(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56) +#define NLOHMANN_JSON_PASTE58(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE57(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57) +#define NLOHMANN_JSON_PASTE59(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE58(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58) +#define NLOHMANN_JSON_PASTE60(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE59(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59) +#define NLOHMANN_JSON_PASTE61(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE60(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60) +#define NLOHMANN_JSON_PASTE62(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE61(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61) +#define NLOHMANN_JSON_PASTE63(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE62(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62) +#define NLOHMANN_JSON_PASTE64(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62, v63) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE63(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62, v63) + +#define NLOHMANN_JSON_TO(v1) nlohmann_json_j[#v1] = nlohmann_json_t.v1; +#define NLOHMANN_JSON_FROM(v1) nlohmann_json_j.at(#v1).get_to(nlohmann_json_t.v1); +#define NLOHMANN_JSON_FROM_WITH_DEFAULT(v1) nlohmann_json_t.v1 = nlohmann_json_j.value(#v1, nlohmann_json_default_obj.v1); + +/*! +@brief macro +@def NLOHMANN_DEFINE_TYPE_INTRUSIVE +@since version 3.9.0 +*/ +#define NLOHMANN_DEFINE_TYPE_INTRUSIVE(Type, ...) \ + friend void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) } \ + friend void from_json(const nlohmann::json& nlohmann_json_j, Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_FROM, __VA_ARGS__)) } + +#define NLOHMANN_DEFINE_TYPE_INTRUSIVE_WITH_DEFAULT(Type, ...) \ + friend void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) } \ + friend void from_json(const nlohmann::json& nlohmann_json_j, Type& nlohmann_json_t) { const Type nlohmann_json_default_obj{}; NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_FROM_WITH_DEFAULT, __VA_ARGS__)) } + +#define NLOHMANN_DEFINE_TYPE_INTRUSIVE_ONLY_SERIALIZE(Type, ...) \ + friend void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) } + +/*! +@brief macro +@def NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE +@since version 3.9.0 +*/ +#define NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(Type, ...) \ + inline void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) } \ + inline void from_json(const nlohmann::json& nlohmann_json_j, Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_FROM, __VA_ARGS__)) } + +#define NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE_ONLY_SERIALIZE(Type, ...) \ + inline void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) } + +#define NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE_WITH_DEFAULT(Type, ...) \ + inline void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) } \ + inline void from_json(const nlohmann::json& nlohmann_json_j, Type& nlohmann_json_t) { const Type nlohmann_json_default_obj{}; NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_FROM_WITH_DEFAULT, __VA_ARGS__)) } + +// inspired from https://stackoverflow.com/a/26745591 +// allows to call any std function as if (e.g. with begin): +// using std::begin; begin(x); +// +// it allows using the detected idiom to retrieve the return type +// of such an expression +#define NLOHMANN_CAN_CALL_STD_FUNC_IMPL(std_name) \ + namespace detail { \ + using std::std_name; \ + \ + template \ + using result_of_##std_name = decltype(std_name(std::declval()...)); \ + } \ + \ + namespace detail2 { \ + struct std_name##_tag \ + { \ + }; \ + \ + template \ + std_name##_tag std_name(T&&...); \ + \ + template \ + using result_of_##std_name = decltype(std_name(std::declval()...)); \ + \ + template \ + struct would_call_std_##std_name \ + { \ + static constexpr auto const value = ::nlohmann::detail:: \ + is_detected_exact::value; \ + }; \ + } /* namespace detail2 */ \ + \ + template \ + struct would_call_std_##std_name : detail2::would_call_std_##std_name \ + { \ + } + +#ifndef JSON_USE_IMPLICIT_CONVERSIONS + #define JSON_USE_IMPLICIT_CONVERSIONS 1 +#endif + +#if JSON_USE_IMPLICIT_CONVERSIONS + #define JSON_EXPLICIT +#else + #define JSON_EXPLICIT explicit +#endif + +#ifndef JSON_DISABLE_ENUM_SERIALIZATION + #define JSON_DISABLE_ENUM_SERIALIZATION 0 +#endif + +#ifndef JSON_USE_GLOBAL_UDLS + #define JSON_USE_GLOBAL_UDLS 1 +#endif + +#if JSON_HAS_THREE_WAY_COMPARISON + #include // partial_ordering +#endif + +NLOHMANN_JSON_NAMESPACE_BEGIN +namespace detail +{ + +/////////////////////////// +// JSON type enumeration // +/////////////////////////// + +/*! +@brief the JSON type enumeration + +This enumeration collects the different JSON types. It is internally used to +distinguish the stored values, and the functions @ref basic_json::is_null(), +@ref basic_json::is_object(), @ref basic_json::is_array(), +@ref basic_json::is_string(), @ref basic_json::is_boolean(), +@ref basic_json::is_number() (with @ref basic_json::is_number_integer(), +@ref basic_json::is_number_unsigned(), and @ref basic_json::is_number_float()), +@ref basic_json::is_discarded(), @ref basic_json::is_primitive(), and +@ref basic_json::is_structured() rely on it. + +@note There are three enumeration entries (number_integer, number_unsigned, and +number_float), because the library distinguishes these three types for numbers: +@ref basic_json::number_unsigned_t is used for unsigned integers, +@ref basic_json::number_integer_t is used for signed integers, and +@ref basic_json::number_float_t is used for floating-point numbers or to +approximate integers which do not fit in the limits of their respective type. + +@sa see @ref basic_json::basic_json(const value_t value_type) -- create a JSON +value with the default value for a given type + +@since version 1.0.0 +*/ +enum class value_t : std::uint8_t +{ + null, ///< null value + object, ///< object (unordered set of name/value pairs) + array, ///< array (ordered collection of values) + string, ///< string value + boolean, ///< boolean value + number_integer, ///< number value (signed integer) + number_unsigned, ///< number value (unsigned integer) + number_float, ///< number value (floating-point) + binary, ///< binary array (ordered collection of bytes) + discarded ///< discarded by the parser callback function +}; + +/*! +@brief comparison operator for JSON types + +Returns an ordering that is similar to Python: +- order: null < boolean < number < object < array < string < binary +- furthermore, each type is not smaller than itself +- discarded values are not comparable +- binary is represented as a b"" string in python and directly comparable to a + string; however, making a binary array directly comparable with a string would + be surprising behavior in a JSON file. + +@since version 1.0.0 +*/ +#if JSON_HAS_THREE_WAY_COMPARISON + inline std::partial_ordering operator<=>(const value_t lhs, const value_t rhs) noexcept // *NOPAD* +#else + inline bool operator<(const value_t lhs, const value_t rhs) noexcept +#endif +{ + static constexpr std::array order = {{ + 0 /* null */, 3 /* object */, 4 /* array */, 5 /* string */, + 1 /* boolean */, 2 /* integer */, 2 /* unsigned */, 2 /* float */, + 6 /* binary */ + } + }; + + const auto l_index = static_cast(lhs); + const auto r_index = static_cast(rhs); +#if JSON_HAS_THREE_WAY_COMPARISON + if (l_index < order.size() && r_index < order.size()) + { + return order[l_index] <=> order[r_index]; // *NOPAD* + } + return std::partial_ordering::unordered; +#else + return l_index < order.size() && r_index < order.size() && order[l_index] < order[r_index]; +#endif +} + +// GCC selects the built-in operator< over an operator rewritten from +// a user-defined spaceship operator +// Clang, MSVC, and ICC select the rewritten candidate +// (see GCC bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105200) +#if JSON_HAS_THREE_WAY_COMPARISON && defined(__GNUC__) +inline bool operator<(const value_t lhs, const value_t rhs) noexcept +{ + return std::is_lt(lhs <=> rhs); // *NOPAD* +} +#endif + +} // namespace detail +NLOHMANN_JSON_NAMESPACE_END + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.3 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +// #include + + +NLOHMANN_JSON_NAMESPACE_BEGIN +namespace detail +{ + +/*! +@brief replace all occurrences of a substring by another string + +@param[in,out] s the string to manipulate; changed so that all + occurrences of @a f are replaced with @a t +@param[in] f the substring to replace with @a t +@param[in] t the string to replace @a f + +@pre The search string @a f must not be empty. **This precondition is +enforced with an assertion.** + +@since version 2.0.0 +*/ +template +inline void replace_substring(StringType& s, const StringType& f, + const StringType& t) +{ + JSON_ASSERT(!f.empty()); + for (auto pos = s.find(f); // find first occurrence of f + pos != StringType::npos; // make sure f was found + s.replace(pos, f.size(), t), // replace with t, and + pos = s.find(f, pos + t.size())) // find next occurrence of f + {} +} + +/*! + * @brief string escaping as described in RFC 6901 (Sect. 4) + * @param[in] s string to escape + * @return escaped string + * + * Note the order of escaping "~" to "~0" and "/" to "~1" is important. + */ +template +inline StringType escape(StringType s) +{ + replace_substring(s, StringType{"~"}, StringType{"~0"}); + replace_substring(s, StringType{"/"}, StringType{"~1"}); + return s; +} + +/*! + * @brief string unescaping as described in RFC 6901 (Sect. 4) + * @param[in] s string to unescape + * @return unescaped string + * + * Note the order of escaping "~1" to "/" and "~0" to "~" is important. + */ +template +static void unescape(StringType& s) +{ + replace_substring(s, StringType{"~1"}, StringType{"/"}); + replace_substring(s, StringType{"~0"}, StringType{"~"}); +} + +} // namespace detail +NLOHMANN_JSON_NAMESPACE_END + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.3 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +#include // size_t + +// #include + + +NLOHMANN_JSON_NAMESPACE_BEGIN +namespace detail +{ + +/// struct to capture the start position of the current token +struct position_t +{ + /// the total number of characters read + std::size_t chars_read_total = 0; + /// the number of characters read in the current line + std::size_t chars_read_current_line = 0; + /// the number of lines read + std::size_t lines_read = 0; + + /// conversion to size_t to preserve SAX interface + constexpr operator size_t() const + { + return chars_read_total; + } +}; + +} // namespace detail +NLOHMANN_JSON_NAMESPACE_END + +// #include + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.3 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann +// SPDX-FileCopyrightText: 2018 The Abseil Authors +// SPDX-License-Identifier: MIT + + + +#include // array +#include // size_t +#include // conditional, enable_if, false_type, integral_constant, is_constructible, is_integral, is_same, remove_cv, remove_reference, true_type +#include // index_sequence, make_index_sequence, index_sequence_for + +// #include + + +NLOHMANN_JSON_NAMESPACE_BEGIN +namespace detail +{ + +template +using uncvref_t = typename std::remove_cv::type>::type; + +#ifdef JSON_HAS_CPP_14 + +// the following utilities are natively available in C++14 +using std::enable_if_t; +using std::index_sequence; +using std::make_index_sequence; +using std::index_sequence_for; + +#else + +// alias templates to reduce boilerplate +template +using enable_if_t = typename std::enable_if::type; + +// The following code is taken from https://github.com/abseil/abseil-cpp/blob/10cb35e459f5ecca5b2ff107635da0bfa41011b4/absl/utility/utility.h +// which is part of Google Abseil (https://github.com/abseil/abseil-cpp), licensed under the Apache License 2.0. + +//// START OF CODE FROM GOOGLE ABSEIL + +// integer_sequence +// +// Class template representing a compile-time integer sequence. An instantiation +// of `integer_sequence` has a sequence of integers encoded in its +// type through its template arguments (which is a common need when +// working with C++11 variadic templates). `absl::integer_sequence` is designed +// to be a drop-in replacement for C++14's `std::integer_sequence`. +// +// Example: +// +// template< class T, T... Ints > +// void user_function(integer_sequence); +// +// int main() +// { +// // user_function's `T` will be deduced to `int` and `Ints...` +// // will be deduced to `0, 1, 2, 3, 4`. +// user_function(make_integer_sequence()); +// } +template +struct integer_sequence +{ + using value_type = T; + static constexpr std::size_t size() noexcept + { + return sizeof...(Ints); + } +}; + +// index_sequence +// +// A helper template for an `integer_sequence` of `size_t`, +// `absl::index_sequence` is designed to be a drop-in replacement for C++14's +// `std::index_sequence`. +template +using index_sequence = integer_sequence; + +namespace utility_internal +{ + +template +struct Extend; + +// Note that SeqSize == sizeof...(Ints). It's passed explicitly for efficiency. +template +struct Extend, SeqSize, 0> +{ + using type = integer_sequence < T, Ints..., (Ints + SeqSize)... >; +}; + +template +struct Extend, SeqSize, 1> +{ + using type = integer_sequence < T, Ints..., (Ints + SeqSize)..., 2 * SeqSize >; +}; + +// Recursion helper for 'make_integer_sequence'. +// 'Gen::type' is an alias for 'integer_sequence'. +template +struct Gen +{ + using type = + typename Extend < typename Gen < T, N / 2 >::type, N / 2, N % 2 >::type; +}; + +template +struct Gen +{ + using type = integer_sequence; +}; + +} // namespace utility_internal + +// Compile-time sequences of integers + +// make_integer_sequence +// +// This template alias is equivalent to +// `integer_sequence`, and is designed to be a drop-in +// replacement for C++14's `std::make_integer_sequence`. +template +using make_integer_sequence = typename utility_internal::Gen::type; + +// make_index_sequence +// +// This template alias is equivalent to `index_sequence<0, 1, ..., N-1>`, +// and is designed to be a drop-in replacement for C++14's +// `std::make_index_sequence`. +template +using make_index_sequence = make_integer_sequence; + +// index_sequence_for +// +// Converts a typename pack into an index sequence of the same length, and +// is designed to be a drop-in replacement for C++14's +// `std::index_sequence_for()` +template +using index_sequence_for = make_index_sequence; + +//// END OF CODE FROM GOOGLE ABSEIL + +#endif + +// dispatch utility (taken from ranges-v3) +template struct priority_tag : priority_tag < N - 1 > {}; +template<> struct priority_tag<0> {}; + +// taken from ranges-v3 +template +struct static_const +{ + static JSON_INLINE_VARIABLE constexpr T value{}; +}; + +#ifndef JSON_HAS_CPP_17 + template + constexpr T static_const::value; +#endif + +template +inline constexpr std::array make_array(Args&& ... args) +{ + return std::array {{static_cast(std::forward(args))...}}; +} + +} // namespace detail +NLOHMANN_JSON_NAMESPACE_END + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.3 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +#include // numeric_limits +#include // false_type, is_constructible, is_integral, is_same, true_type +#include // declval +#include // tuple +#include // char_traits + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.3 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +#include // random_access_iterator_tag + +// #include + +// #include + +// #include + + +NLOHMANN_JSON_NAMESPACE_BEGIN +namespace detail +{ + +template +struct iterator_types {}; + +template +struct iterator_types < + It, + void_t> +{ + using difference_type = typename It::difference_type; + using value_type = typename It::value_type; + using pointer = typename It::pointer; + using reference = typename It::reference; + using iterator_category = typename It::iterator_category; +}; + +// This is required as some compilers implement std::iterator_traits in a way that +// doesn't work with SFINAE. See https://github.com/nlohmann/json/issues/1341. +template +struct iterator_traits +{ +}; + +template +struct iterator_traits < T, enable_if_t < !std::is_pointer::value >> + : iterator_types +{ +}; + +template +struct iterator_traits::value>> +{ + using iterator_category = std::random_access_iterator_tag; + using value_type = T; + using difference_type = ptrdiff_t; + using pointer = T*; + using reference = T&; +}; + +} // namespace detail +NLOHMANN_JSON_NAMESPACE_END + +// #include + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.3 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +// #include + + +NLOHMANN_JSON_NAMESPACE_BEGIN + +NLOHMANN_CAN_CALL_STD_FUNC_IMPL(begin); + +NLOHMANN_JSON_NAMESPACE_END + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.3 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +// #include + + +NLOHMANN_JSON_NAMESPACE_BEGIN + +NLOHMANN_CAN_CALL_STD_FUNC_IMPL(end); + +NLOHMANN_JSON_NAMESPACE_END + +// #include + +// #include + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.3 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann +// SPDX-License-Identifier: MIT + +#ifndef INCLUDE_NLOHMANN_JSON_FWD_HPP_ + #define INCLUDE_NLOHMANN_JSON_FWD_HPP_ + + #include // int64_t, uint64_t + #include // map + #include // allocator + #include // string + #include // vector + + // #include + + + /*! + @brief namespace for Niels Lohmann + @see https://github.com/nlohmann + @since version 1.0.0 + */ + NLOHMANN_JSON_NAMESPACE_BEGIN + + /*! + @brief default JSONSerializer template argument + + This serializer ignores the template arguments and uses ADL + ([argument-dependent lookup](https://en.cppreference.com/w/cpp/language/adl)) + for serialization. + */ + template + struct adl_serializer; + + /// a class to store JSON values + /// @sa https://json.nlohmann.me/api/basic_json/ + template class ObjectType = + std::map, + template class ArrayType = std::vector, + class StringType = std::string, class BooleanType = bool, + class NumberIntegerType = std::int64_t, + class NumberUnsignedType = std::uint64_t, + class NumberFloatType = double, + template class AllocatorType = std::allocator, + template class JSONSerializer = + adl_serializer, + class BinaryType = std::vector, // cppcheck-suppress syntaxError + class CustomBaseClass = void> + class basic_json; + + /// @brief JSON Pointer defines a string syntax for identifying a specific value within a JSON document + /// @sa https://json.nlohmann.me/api/json_pointer/ + template + class json_pointer; + + /*! + @brief default specialization + @sa https://json.nlohmann.me/api/json/ + */ + using json = basic_json<>; + + /// @brief a minimal map-like container that preserves insertion order + /// @sa https://json.nlohmann.me/api/ordered_map/ + template + struct ordered_map; + + /// @brief specialization that maintains the insertion order of object keys + /// @sa https://json.nlohmann.me/api/ordered_json/ + using ordered_json = basic_json; + + NLOHMANN_JSON_NAMESPACE_END + +#endif // INCLUDE_NLOHMANN_JSON_FWD_HPP_ + + +NLOHMANN_JSON_NAMESPACE_BEGIN +/*! +@brief detail namespace with internal helper functions + +This namespace collects functions that should not be exposed, +implementations of some @ref basic_json methods, and meta-programming helpers. + +@since version 2.1.0 +*/ +namespace detail +{ + +///////////// +// helpers // +///////////// + +// Note to maintainers: +// +// Every trait in this file expects a non CV-qualified type. +// The only exceptions are in the 'aliases for detected' section +// (i.e. those of the form: decltype(T::member_function(std::declval()))) +// +// In this case, T has to be properly CV-qualified to constraint the function arguments +// (e.g. to_json(BasicJsonType&, const T&)) + +template struct is_basic_json : std::false_type {}; + +NLOHMANN_BASIC_JSON_TPL_DECLARATION +struct is_basic_json : std::true_type {}; + +// used by exceptions create() member functions +// true_type for pointer to possibly cv-qualified basic_json or std::nullptr_t +// false_type otherwise +template +struct is_basic_json_context : + std::integral_constant < bool, + is_basic_json::type>::type>::value + || std::is_same::value > +{}; + +////////////////////// +// json_ref helpers // +////////////////////// + +template +class json_ref; + +template +struct is_json_ref : std::false_type {}; + +template +struct is_json_ref> : std::true_type {}; + +////////////////////////// +// aliases for detected // +////////////////////////// + +template +using mapped_type_t = typename T::mapped_type; + +template +using key_type_t = typename T::key_type; + +template +using value_type_t = typename T::value_type; + +template +using difference_type_t = typename T::difference_type; + +template +using pointer_t = typename T::pointer; + +template +using reference_t = typename T::reference; + +template +using iterator_category_t = typename T::iterator_category; + +template +using to_json_function = decltype(T::to_json(std::declval()...)); + +template +using from_json_function = decltype(T::from_json(std::declval()...)); + +template +using get_template_function = decltype(std::declval().template get()); + +// trait checking if JSONSerializer::from_json(json const&, udt&) exists +template +struct has_from_json : std::false_type {}; + +// trait checking if j.get is valid +// use this trait instead of std::is_constructible or std::is_convertible, +// both rely on, or make use of implicit conversions, and thus fail when T +// has several constructors/operator= (see https://github.com/nlohmann/json/issues/958) +template +struct is_getable +{ + static constexpr bool value = is_detected::value; +}; + +template +struct has_from_json < BasicJsonType, T, enable_if_t < !is_basic_json::value >> +{ + using serializer = typename BasicJsonType::template json_serializer; + + static constexpr bool value = + is_detected_exact::value; +}; + +// This trait checks if JSONSerializer::from_json(json const&) exists +// this overload is used for non-default-constructible user-defined-types +template +struct has_non_default_from_json : std::false_type {}; + +template +struct has_non_default_from_json < BasicJsonType, T, enable_if_t < !is_basic_json::value >> +{ + using serializer = typename BasicJsonType::template json_serializer; + + static constexpr bool value = + is_detected_exact::value; +}; + +// This trait checks if BasicJsonType::json_serializer::to_json exists +// Do not evaluate the trait when T is a basic_json type, to avoid template instantiation infinite recursion. +template +struct has_to_json : std::false_type {}; + +template +struct has_to_json < BasicJsonType, T, enable_if_t < !is_basic_json::value >> +{ + using serializer = typename BasicJsonType::template json_serializer; + + static constexpr bool value = + is_detected_exact::value; +}; + +template +using detect_key_compare = typename T::key_compare; + +template +struct has_key_compare : std::integral_constant::value> {}; + +// obtains the actual object key comparator +template +struct actual_object_comparator +{ + using object_t = typename BasicJsonType::object_t; + using object_comparator_t = typename BasicJsonType::default_object_comparator_t; + using type = typename std::conditional < has_key_compare::value, + typename object_t::key_compare, object_comparator_t>::type; +}; + +template +using actual_object_comparator_t = typename actual_object_comparator::type; + +///////////////// +// char_traits // +///////////////// + +// Primary template of char_traits calls std char_traits +template +struct char_traits : std::char_traits +{}; + +// Explicitly define char traits for unsigned char since it is not standard +template<> +struct char_traits : std::char_traits +{ + using char_type = unsigned char; + using int_type = uint64_t; + + // Redefine to_int_type function + static int_type to_int_type(char_type c) noexcept + { + return static_cast(c); + } + + static char_type to_char_type(int_type i) noexcept + { + return static_cast(i); + } + + static constexpr int_type eof() noexcept + { + return static_cast(EOF); + } +}; + +// Explicitly define char traits for signed char since it is not standard +template<> +struct char_traits : std::char_traits +{ + using char_type = signed char; + using int_type = uint64_t; + + // Redefine to_int_type function + static int_type to_int_type(char_type c) noexcept + { + return static_cast(c); + } + + static char_type to_char_type(int_type i) noexcept + { + return static_cast(i); + } + + static constexpr int_type eof() noexcept + { + return static_cast(EOF); + } +}; + +/////////////////// +// is_ functions // +/////////////////// + +// https://en.cppreference.com/w/cpp/types/conjunction +template struct conjunction : std::true_type { }; +template struct conjunction : B { }; +template +struct conjunction +: std::conditional(B::value), conjunction, B>::type {}; + +// https://en.cppreference.com/w/cpp/types/negation +template struct negation : std::integral_constant < bool, !B::value > { }; + +// Reimplementation of is_constructible and is_default_constructible, due to them being broken for +// std::pair and std::tuple until LWG 2367 fix (see https://cplusplus.github.io/LWG/lwg-defects.html#2367). +// This causes compile errors in e.g. clang 3.5 or gcc 4.9. +template +struct is_default_constructible : std::is_default_constructible {}; + +template +struct is_default_constructible> + : conjunction, is_default_constructible> {}; + +template +struct is_default_constructible> + : conjunction, is_default_constructible> {}; + +template +struct is_default_constructible> + : conjunction...> {}; + +template +struct is_default_constructible> + : conjunction...> {}; + +template +struct is_constructible : std::is_constructible {}; + +template +struct is_constructible> : is_default_constructible> {}; + +template +struct is_constructible> : is_default_constructible> {}; + +template +struct is_constructible> : is_default_constructible> {}; + +template +struct is_constructible> : is_default_constructible> {}; + +template +struct is_iterator_traits : std::false_type {}; + +template +struct is_iterator_traits> +{ + private: + using traits = iterator_traits; + + public: + static constexpr auto value = + is_detected::value && + is_detected::value && + is_detected::value && + is_detected::value && + is_detected::value; +}; + +template +struct is_range +{ + private: + using t_ref = typename std::add_lvalue_reference::type; + + using iterator = detected_t; + using sentinel = detected_t; + + // to be 100% correct, it should use https://en.cppreference.com/w/cpp/iterator/input_or_output_iterator + // and https://en.cppreference.com/w/cpp/iterator/sentinel_for + // but reimplementing these would be too much work, as a lot of other concepts are used underneath + static constexpr auto is_iterator_begin = + is_iterator_traits>::value; + + public: + static constexpr bool value = !std::is_same::value && !std::is_same::value && is_iterator_begin; +}; + +template +using iterator_t = enable_if_t::value, result_of_begin())>>; + +template +using range_value_t = value_type_t>>; + +// The following implementation of is_complete_type is taken from +// https://blogs.msdn.microsoft.com/vcblog/2015/12/02/partial-support-for-expression-sfinae-in-vs-2015-update-1/ +// and is written by Xiang Fan who agreed to using it in this library. + +template +struct is_complete_type : std::false_type {}; + +template +struct is_complete_type : std::true_type {}; + +template +struct is_compatible_object_type_impl : std::false_type {}; + +template +struct is_compatible_object_type_impl < + BasicJsonType, CompatibleObjectType, + enable_if_t < is_detected::value&& + is_detected::value >> +{ + using object_t = typename BasicJsonType::object_t; + + // macOS's is_constructible does not play well with nonesuch... + static constexpr bool value = + is_constructible::value && + is_constructible::value; +}; + +template +struct is_compatible_object_type + : is_compatible_object_type_impl {}; + +template +struct is_constructible_object_type_impl : std::false_type {}; + +template +struct is_constructible_object_type_impl < + BasicJsonType, ConstructibleObjectType, + enable_if_t < is_detected::value&& + is_detected::value >> +{ + using object_t = typename BasicJsonType::object_t; + + static constexpr bool value = + (is_default_constructible::value && + (std::is_move_assignable::value || + std::is_copy_assignable::value) && + (is_constructible::value && + std::is_same < + typename object_t::mapped_type, + typename ConstructibleObjectType::mapped_type >::value)) || + (has_from_json::value || + has_non_default_from_json < + BasicJsonType, + typename ConstructibleObjectType::mapped_type >::value); +}; + +template +struct is_constructible_object_type + : is_constructible_object_type_impl {}; + +template +struct is_compatible_string_type +{ + static constexpr auto value = + is_constructible::value; +}; + +template +struct is_constructible_string_type +{ + // launder type through decltype() to fix compilation failure on ICPC +#ifdef __INTEL_COMPILER + using laundered_type = decltype(std::declval()); +#else + using laundered_type = ConstructibleStringType; +#endif + + static constexpr auto value = + conjunction < + is_constructible, + is_detected_exact>::value; +}; + +template +struct is_compatible_array_type_impl : std::false_type {}; + +template +struct is_compatible_array_type_impl < + BasicJsonType, CompatibleArrayType, + enable_if_t < + is_detected::value&& + is_iterator_traits>>::value&& +// special case for types like std::filesystem::path whose iterator's value_type are themselves +// c.f. https://github.com/nlohmann/json/pull/3073 + !std::is_same>::value >> +{ + static constexpr bool value = + is_constructible>::value; +}; + +template +struct is_compatible_array_type + : is_compatible_array_type_impl {}; + +template +struct is_constructible_array_type_impl : std::false_type {}; + +template +struct is_constructible_array_type_impl < + BasicJsonType, ConstructibleArrayType, + enable_if_t::value >> + : std::true_type {}; + +template +struct is_constructible_array_type_impl < + BasicJsonType, ConstructibleArrayType, + enable_if_t < !std::is_same::value&& + !is_compatible_string_type::value&& + is_default_constructible::value&& +(std::is_move_assignable::value || + std::is_copy_assignable::value)&& +is_detected::value&& +is_iterator_traits>>::value&& +is_detected::value&& +// special case for types like std::filesystem::path whose iterator's value_type are themselves +// c.f. https://github.com/nlohmann/json/pull/3073 +!std::is_same>::value&& + is_complete_type < + detected_t>::value >> +{ + using value_type = range_value_t; + + static constexpr bool value = + std::is_same::value || + has_from_json::value || + has_non_default_from_json < + BasicJsonType, + value_type >::value; +}; + +template +struct is_constructible_array_type + : is_constructible_array_type_impl {}; + +template +struct is_compatible_integer_type_impl : std::false_type {}; + +template +struct is_compatible_integer_type_impl < + RealIntegerType, CompatibleNumberIntegerType, + enable_if_t < std::is_integral::value&& + std::is_integral::value&& + !std::is_same::value >> +{ + // is there an assert somewhere on overflows? + using RealLimits = std::numeric_limits; + using CompatibleLimits = std::numeric_limits; + + static constexpr auto value = + is_constructible::value && + CompatibleLimits::is_integer && + RealLimits::is_signed == CompatibleLimits::is_signed; +}; + +template +struct is_compatible_integer_type + : is_compatible_integer_type_impl {}; + +template +struct is_compatible_type_impl: std::false_type {}; + +template +struct is_compatible_type_impl < + BasicJsonType, CompatibleType, + enable_if_t::value >> +{ + static constexpr bool value = + has_to_json::value; +}; + +template +struct is_compatible_type + : is_compatible_type_impl {}; + +template +struct is_constructible_tuple : std::false_type {}; + +template +struct is_constructible_tuple> : conjunction...> {}; + +template +struct is_json_iterator_of : std::false_type {}; + +template +struct is_json_iterator_of : std::true_type {}; + +template +struct is_json_iterator_of : std::true_type +{}; + +// checks if a given type T is a template specialization of Primary +template